forked from Michael660-max/CovidTracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
112 lines (96 loc) · 1.62 KB
/
main.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
111
112
*{
margin: 0px;
padding: 0px;
box-sizing:border-box;
}
body{
font-family: 'Open Sans', sans-serif;
}
/*First-page Page Styling*/
.main-container{
position: relative;
width: 360px;
height: 640px;
background-color: #588157;
overflow-y: scroll;
}
.logo{
position: absolute;
width: 220px;
height: 123px;
left: 70px;
top: 63px;
}
.splash p{
position: absolute;
width: 295px;
height: 16px;
left: 33px;
top: 173px;
font-family: Open Sans;
font-style: normal;
font-weight: normal;
font-size: 12px;
line-height: 16px;
text-align: center;
color: #DAD7CD;
}
.start-button .button{
position: absolute;
width: 195px;
height: 47px;
left: 83px;
top: 668px;
background: #344E41;
border-radius: 50px;
}
.start-button a{
position: absolute;
width: 74px;
height: 25px;
left: 143px;
top: 679px;
font-family: Open Sans;
font-style: normal;
font-weight: bold;
font-size: 18px;
line-height: 25px;
color: #DAD7CD;
}
.covidDataContainer{
position: absolute;
width: 259px;
height: 383px;
left: 51px;
top: 237px;
background: #C4C4C4;
}
.covidData h1{
position: absolute;
width: 209px;
height: 25px;
left: 76px;
top: 256px;
font-family: Open Sans;
font-style: normal;
font-weight: bold;
font-size: 18px;
line-height: 25px;
/* identical to box height */
text-align: center;
color: #787055;
}
.covidData p{
position: absolute;
width: 207px;
height: 288px;
left: 76px;
top: 317px;
font-family: Open Sans;
font-style: normal;
font-weight: normal;
font-size: 18px;
line-height: 25px;
text-align: center;
color: #787055;
}