-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
118 lines (99 loc) · 1.97 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
111
112
113
114
115
116
117
118
*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
body{
height: 100px;
background-color: #263859;
}
#search-form
{
display: flex;
justify-content: center;
align-items: center;
margin-top: 100px;
}
#temp
{
text-align: center;
}
#temp #temp-unit
{
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-size: 1.5rem;
color: #ffffff;
}
#temp #temp-value
{
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-size: 2rem;
color: #ffffff;
}
#climate
{
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-size: 2.5rem;
color: #ffffff;
text-align: center;
}
#location
{
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-size: 2.5rem;
color: #ffffff;
text-align: center;
}
#temp-icon
{
margin: 1rem;
width: 40%;
height: auto;
}
main{
padding: 20px;
margin-top: 10px;
background-color: #6b778d;
border-radius: 20px;
width: 360px;
height: 360px;
display: block;
margin-left: auto;
margin-right: auto;
box-shadow: 10px 10px 20px 10px rgba(112, 102, 102, 0.2);
}
#search-button
{
color: #494949;
text-transform: uppercase;
text-decoration: none;
background: white;
border-radius: 5px;
margin-left: 5px;
padding: 11px;
border: 2px solid #494949;
display: inline-block;
transition: all 0.4 ease 0s;
}
#search-button:hover{
color: #ffffff;
background: #ff6768;
border-color: #ff6768;
transition: all 0.4s ease 0s;
}
#search-input
{
width: 260px;
overflow: hidden;
font-size: 20px;
margin: 8px 0;
padding: 8px 0;
border-bottom: 3px solid #ff6768;
color: white;
outline: none;
background: none;
}
input
{
border: none;
}