-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
115 lines (113 loc) · 1.77 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
body {
font-family: "Anonymous Pro", monospace;
font-family: "Caveat", cursive;
font-family: "Permanent Marker", cursive;
font-family: "Roboto Mono", monospace;
font-family: "Roboto Slab", serif;
background-size: cover;
background-image: url("white.png");
}
li {
font-size: 24px;
color: #596aca;
}
img {
width: 90px;
margin: 0;
padding: 0;
position: relative;
top: -10px;
left: -10px;
}
h1 {
color: #ab47bc;
background-color: #f6ecf8;
display: block;
margin-right: 15%;
font-style: italic;
}
#country {
color: #76d1cb;
}
h3 {
color: #ffaa2e;
font-weight: 400;
font-size: 22px;
margin-bottom: 20px;
}
h3::first-letter {
text-transform: capitalize;
}
ul {
list-style: none;
}
.weather-app {
max-width: 70%;
margin: 10px auto;
}
.logo {
font-size: 65px;
}
.time {
font-size: 16px;
color: #1cb3a9;
position: relative;
top: -5px;
display: inline-block;
}
.first-day {
color: #f4e711;
background-color: #fefde7;
font-style: italic;
display: inline-block;
padding-right: 10px;
}
.other-day {
font-weight: 400;
font-size: 24px;
color: #1cb3a9;
font-style: italic;
}
.temperature-block {
color: #42a5f5;
font-weight: 400;
font-size: 40px;
}
.units {
font-size: 16px;
position: relative;
top: -16px;
}
.btn1 {
background-color: #76d1cb;
color: #ab47bc;
border: none;
transition: 200ms 0 ease-in-out;
}
.btn1:hover {
background: #ab47bc;
color: #76d1cb;
border: 3px solid #76d1cb;
}
.btn2 {
background: #f6ecf8;
color: #ab47bc;
border: none;
}
.btn2:hover {
background-color: #f4e711;
color: #ffaa2e;
border: 3px solid #ffaa2e;
}
.footer {
text-shadow: #ab47bc;
line-height: 5;
}
.active {
color: #ab47bc;
cursor: default;
text-decoration: none;
}
.active:hover {
color: #ab47bc;
}