-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
101 lines (83 loc) · 1.63 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
body {
font-family: 'Helvetica', sans-serif;
padding-top: 70px; /* needed to get page content out from under fixed nav */
}
.container-fluid {
background-color: #00699B;
border-color: #00699B;
}
.navbar-default .navbar-brand {
color: #FFF;
font-weight: bold;
}
.navbar-default .navbar-brand:hover {
color: #FFF;
font-weight: bold;
}
.navbar-default .navbar-nav li a {
color: #FFF;
}
.navbar-default .navbar-nav li a:hover,
.navbar-default .navbar-nav li a:active,
.navbar-default .navbar-nav li a:focus {
color: #7AA2FF;
}
.navbar-default .navbar-toggle .icon-bar {
background-color: #FFF;
}
.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
background-color: #7AA2FF;
}
.dataWrapper, .spinner, .locationMessage {
text-align : center;
}
.cityData {
width: 80%;
height: 100%;
padding-top: 8px;
display : inline-block;
text-align: center;
}
.city, .locationMessage {
color : #FF9664;
font-weight : bold;
font-size: 40px;
}
.border {
border-bottom : 1px solid #BFEAFF;
margin : 10px;
}
.temperature {
color: #9B0069;
font-size: 62px;
font-weight: 900;
}
.conditions {
font-size: 28px;
font-weight: 300;
color: #65A72A;
}
.weatherType {
font-size: 18px;
font-weight: 200;
color: #00699B;
}
.weatherData {
font-size: 22px;
font-weight: 700;
color: #00699B;
padding-bottom : 20px;
}
.forecastGroup {
margin : 30px;
}
.forecastDate {
color: #65A72A;
font-size : 16px;
font-weight : 700;
}
.forecastTemp {
color: #00699B;
font-size : 16px;
font-weight : 400;
}