-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
114 lines (113 loc) · 2.32 KB
/
Copy pathstyle.css
File metadata and controls
114 lines (113 loc) · 2.32 KB
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
@charset "UTF-8";
* {
padding: 0;
margin: 0;
box-sizing: border-box;
/* Merci kléklé -> https://github.com/ClemOurs */
}
* body {
width: 100vw;
background-color: #3a3a3a;
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center;
display: flex;
justify-content: center;
align-items: center;
}
* body .firstView {
display: flex;
flex-direction: column;
justify-content: center;
height: 100vh;
align-items: center;
gap: 30px;
font-family: poppins, sans-serif;
}
@media screen and (max-width: 700px) {
* body .firstView form {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 20px;
}
}
* body .firstView form input {
padding: 1rem 2rem;
font-size: 30px;
text-align: center;
border: none;
border-radius: 10px;
}
* body .firstView form input:hover {
-webkit-filter: invert(100%);
transition: 0.2s all;
}
@media screen and (max-width: 700px) {
* body .firstView form input {
font-size: 20px;
}
}
* body .firstView .cityName {
border-radius: 10px;
}
* body .firstView .cityName > h1 {
font-size: 50px;
-webkit-filter: invert(100%);
padding: 1rem 2rem;
text-align: center;
width: fit-content;
}
@media screen and (max-width: 700px) {
* body .firstView .cityName > h1 {
font-size: 30px;
}
}
* body .firstView .degCard {
width: 200px;
height: 250px;
background-color: rgba(51, 51, 51, 0.438);
display: flex;
flex-direction: column;
gap: 10px;
justify-content: center;
align-items: center;
border-radius: 10px;
}
* body .firstView .degCard > p {
font-size: 40px;
-webkit-filter: invert(100%);
}
* body .firstView .degCard > img {
width: 80px;
}
* body .firstView .changeButton {
font-size: 20px;
border-radius: 10px;
cursor: pointer;
transition: 0.2s all;
}
@media screen and (max-width: 700px) {
* body .firstView .changeButton {
text-align: center;
width: 360px;
}
}
* body .firstView .changeButton:hover {
-webkit-filter: invert(100%);
transition: 0.2s all;
}
* body .firstView .changeButton .textButton {
-webkit-filter: invert(100%);
font-weight: 800;
padding: 1rem 2rem;
}
* body .secondView {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
/*# sourceMappingURL=style.css.map */