-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
67 lines (54 loc) · 1.23 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
@import url("https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@500;600&display=swap");
* {
font-family: "Source Code Pro", monospace;
}
#background {
background-size: cover;
background-position: top center;
}
.atmosphere {
background-image: url(/BGimages/atmosphere.jpg);
}
.clear {
background-image: url(/BGimages/clear.jpg);
}
.cloud {
background-image: url(/BGimages/cloud.jpg);
}
.rain {
background-image: url(/BGimages/rain.jpg);
}
.snow {
background-image: url(/BGimages/snow.jpg);
}
input {
padding: 10px 15px;
border: none;
outline: none;
background-color: rgba(255, 255, 255, 0.3);
border-radius: 16px 0px 16px 0px;
border-bottom: 3px solid white;
color: #313131;
transition: 0.2s ease-out;
}
input:focus {
background-color: rgba(255, 255, 255, 0.6);
}
.temp {
background: rgba(255, 255, 255, 0.3);
box-shadow: 0 0 4px 0 rgba(142, 142, 143, 0.37);
backdrop-filter: blur(2.5px);
-webkit-backdrop-filter: blur(2.5px);
border-radius: 10px;
font-weight: 600;
}
.glass {
background: rgba(255, 255, 255, 0.3);
box-shadow: 0 0 4px 0 rgba(142, 142, 143, 0.37);
backdrop-filter: blur(2.5px);
-webkit-backdrop-filter: blur(2.5px);
border-radius: 10px;
}
.wheat {
color: white;
}