-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
125 lines (124 loc) · 1.95 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
119
120
121
122
123
124
125
body {
padding: 20px 0;
}
.container {
border: 6px solid rgba(153, 153, 153, 0.8);
border-radius: 12px;
margin: 30px;
font-family: "Poppins", sans-serif;
}
.row.up {
margin: 5px;
}
#oneline,
#twolines {
display: block;
line-height: 4px;
font-size: 16px;
}
#celsius,
#fahrenheit {
text-decoration: none;
font-size: 16px;
cursor: default;
}
.showing {
color: black;
}
#space {
font-size: 16px;
}
span {
font-size: 48px;
color: #555555;
font-weight: 400;
letter-spacing: 2px;
}
ul {
list-style: none;
color: #777777;
text-align: right;
font-size: 24px;
padding: 5px;
line-height: 1.6;
}
h1 {
color: #555555;
}
footer {
text-align: center;
}
form {
width: 95%;
display: block;
margin: 0 auto;
}
div.col-2 {
border: 1px solid rgba(153, 153, 153, 0.5);
border-radius: 4px;
margin: 12px;
}
#percentage,
#value {
font-size: 15px;
letter-spacing: 2px;
}
#precipitation,
#wind {
font-size: 15px;
color: #555555;
font-weight: normal;
letter-spacing: 1.5px;
}
#precipitation {
padding-top: 15px;
}
#windtext,
#wind {
font-size: 15px;
display: inline;
letter-spacing: 1.5px;
}
#precipitation,
#windtext {
letter-spacing: 1.5px;
}
#description {
text-transform: capitalize;
}
.weather-forecast {
margin-top: 5px;
text-align: center;
}
.weather-forecast-date {
color: #555555;
}
.temperature-max,
.temperature-min {
font-size: 16px;
text-align: center;
}
.weather-forecast-temperature {
display: block;
color: #555555;
font-size: 10px;
}
.temperature-min {
opacity: 0.6;
}
.btn:hover {
background-image: linear-gradient(to left, #bdbbbe 0%, #9d9ea3 100%),
radial-gradient(
88% 271%,
rgba(255, 255, 255, 0.25) 0%,
rgba(254, 254, 254, 0.25) 1%,
rgba(0, 0, 0, 0.25) 100%
),
radial-gradient(
50% 100%,
rgba(255, 255, 255, 0.3) 0%,
rgba(0, 0, 0, 0.3) 100%
);
background-blend-mode: normal, lighten, soft-light;
transition: all 500ms ease-in-out;
}