-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
75 lines (66 loc) · 1.32 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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');
html,body{
padding: 0;
margin: 0;
font-family: 'Poppins', sans-serif;
display: flex;
justify-content: center;
width: 100%;
min-height: 100vh;
background-color: black;
}
section{
/* flex-grow: 1; */
width: 50vw;
margin: 50px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: white;
background-color: rgba(0, 0, 0, 0.2);
backdrop-filter: blur(40px);
/* border: 2px solid rgb(0, 110, 255); */
/* border-radius: 20px; */
padding: 50px;
}
h1{
font-size: 40px;
text-align: center;
}
p{
font-size: 15px;
}
.logo{
width: 100px;
background-color: white;
padding: 20px;
border-radius: 10px;
box-sizing: border-box;
}
label{
font-size: 18px!important;
margin-bottom: 25px;
}
@media only screen and (max-width: 900px){
.logo{
width: 100px!important;
padding: 20px!important;
}
h1{
font-size: 30px!important;
}
section{
width: 80vw;
margin: 20px!important;
padding: 20px;
}
}
@media only screen and (max-width: 500px){
h1{
font-size: 20px!important;
}
label{
font-size: 15px!important;
}
}