forked from uidotdev/react-course-curriculum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
128 lines (117 loc) · 2.45 KB
/
index.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
html {
width: 100%;
height: 100%;
}
body {
height: 100%;
width: 100%;
margin: 0;
font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;
}
.container, #app {
height: 100%;
width: 100%;
}
.home-container {
height: 100%;
width: 100%;
background-size: cover;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.zipcode-container {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 50;
}
.btn {
display: inline-block;
padding: 6px 12px;
margin-bottom: 0;
font-size: 14px;
font-weight: 400;
line-height: 1.42857143;
text-align: center;
white-space: nowrap;
vertical-align: middle;
cursor: pointer;
background-image: none;
border: 1px solid transparent;
border-radius: 4px;
}
.btn-success {
color: #fff;
background-color: #5cb85c;
border-color: #4cae4c;
}
.form-control {
display: block;
width: 100%;
height: 34px;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857143;
color: #555;
background-color: #fff;
background-image: none;
border: 1px solid #ccc;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
-webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
-o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
.header {
font-size: 45px;
color: #fff;
font-weight: 100;
}
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
background: rgba(252, 90, 44, 0.89);
color: #fff;
padding: 5px;
}
.forecast-container {
display: flex;
justify-content:space-between;
align-items: center;
flex-direction: row;
flex-wrap: wrap;
max-width: 1200px;
margin: 50px auto;
}
.dayContainer {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
margin: 35px;
}
.forecast-header {
font-size: 65px;
color: #333;
font-weight: 100;
text-align: center;
}
.subheader {
font-size: 30px;
color: #333;
font-weight: 100;
}
.weather {
height: 130px;
}
.description-container {
font-size: 34px;
font-weight: 100;
max-width: 400px;
margin: 0 auto;
text-align: center;
}