-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
116 lines (112 loc) · 2.09 KB
/
styles.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
body {
font-family: "Poppins", sans-serif;
}
#submitButton {
color: #ffffff;
background: #ffd800;
border: none;
border-radius: 5px;
box-shadow: 2px 2px 3px 1px gray;
}
#submitButton:hover {
background: rgb(114,223,253);
}
#current-location-button {
color: #ffffff;
background: rgb(114,223,253);
border: none;
border-radius: 5px;
box-shadow: 2px 2px 3px 1px gray;
}
#current-location-button:hover {
background: #ffd800;
}
.input-city {
display: flex;
border: none;
border-radius: 5px;
text-align: right;
font-size: 20px;
width: 20%;
margin: 10px;
}
h1 {
float: right;
color: #ffd800;
font-size: 56px;
text-shadow: 2px 2px rgb(250, 239, 223);
margin: 0;
line-height: 1;
}
ul {
margin: 0 0 15px;
padding: 0;
line-height: 1.3;
}
li {
font-size: 26px;
list-style: none;
color: #2c7873;
}
.weather {
border: 2px solid #b4b2ab;
border-radius: 10px;
padding: 15px 15px 0 15px;
margin: 20px auto;
max-width: 700px;
}
.temperature {
font-size: 74px;
line-height: 1;
color: #ffd800;
}
.weather-icon {
width: 20%;
position: relative;
top: -15px;
margin-right: 10px;
}
.degree {
position: relative;
top: -45px;
font-size: 20px;
color: #2c7873;
}
.properties {
font-size: 20px;
}
a {
color: #2c7873;
text-decoration: none;
}
.btn-primary {
position: relative;
background: #ffd800;
color: #2c7873;
border: none;
font-size: 16px;
box-shadow: 1px 1px 5px 1px rgb(214, 212, 212);
}
.footer {
display: inline-block;
font-size: 16px;
margin: 20px 0 0 0;
text-align: center;
}
.days {
font-size: 23px;
color: #ffd800;
}
p {
border: none;
box-shadow: 1px 1px 5px 1px rgb(214, 212, 212);
padding: 10px 15px;
border-radius: 10px;
}
i {
color: #ffd800;
font-size: 26px;
}
.gitHub {
font-size: 14px;
}