-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
110 lines (96 loc) · 1.82 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
body {
margin: 0px;
padding: 0px;
}
#containerWeightDisplay, #containerWeightEntry {
background: url("App Background.png");
padding: 15px;
font-family: 'Poppins', sans-serif;
color: white;
height: 1000px;
}
h1 {
left: 15px;
top: 40px;
color: darksalmon;
font-family: 'Poppins';
font-style: normal;
font-weight: 700;
font-size: 36px;
line-height: 111%;
text-align: center;
}
#currentWeight, #enterWeight1, #enterWeight2 {
width: 100%;
height: 200px;
left: 15px;
top: 150px;
text-align: center;
background-color: #648381;
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
border-radius: 15px;
}
h2, #outputDate {
font-size: 2em;
margin-top: 15px;
margin-bottom: 10px;
font-weight: 500;
}
.weight {
font-size: 3em;
}
p {
font-size: 1.25em;
margin-top: 0px;
font-weight: 500;
}
#containerWeightDisplay p {
font-size: 1.25em;
margin-top: -20px;
font-weight: 500;
}
#weightRecords {
text-align: center;
}
#btnRecord, #btnSave {
width: 100%;
background-color: #FFBF46;
color: white;
margin-top: 15px;
height: 50px;
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
font-size: 1.5em;
font-weight: 500;
}
#newWeight {
background: #F2F4FF;
border-radius: 15px;
height: 34px;
font-size: 1.5em;
font-weight: 700;
width: 100px;
text-align: center;
}
#weightHistory {
text-align: center;
font-weight: 700;
}
.weightHistoryCell {
background-color: white;
color: black;
margin-top: 15px;
height: 50px;
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
font-size: 1.5em;
font-weight: 500;
border-radius: 15px;
line-height: 50px;
padding-left: 15px;
padding-right: 15px;
}
.left {
float: left;
}
.right {
float: right;
}