-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
97 lines (84 loc) · 1.45 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
html{
font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif
}
body {
background-image: url(./Assets/blurry-gradient-haikei.svg);
background-size: cover;
background-attachment: fixed;
}
.container{
display: grid;
place-items: center;
height: 100vh;
}
.box{
padding: 20px;
width: 400px;
background-color: white;
}
.upper{
display: flex;
flex-direction: column;
align-items: center;
}
form {
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
margin-top: 20px;
}
.upper h1{
font-size: 32px;
}
form input{
width: 100%;
height: 40px;
padding: 15px;
}
form button {
width: 100%;
height: 40px;
background-color: rgb(255, 68, 0);
border: none;
color: white;
font-weight: bold;
opacity: 0.9;
}
form button:hover{
opacity: 1;
}
.qr_container{
border: 1px solid black;
display: flex;
justify-content: center;
height: 0;
opacity: 0;
transition: opacity 0.3s ease-in, height 0.1s ease;
}
.qr_container.show{
display: flex;
padding: 10px;
height: 180px;
opacity: 1;
transition: opacity 0.3s ease-in, height 0.1s ease;
}
.qr_container img{
height: 150px;
}
@media(max-width: 500px){
.box{
width: 95%;
}
.box h1{
font-size: 24px;
}
.upper p{
font-size: 14px;
}
}