-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
74 lines (74 loc) · 1.2 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
* {
margin: 0;
padding: 0;
font-family: Roboto;
box-sizing: border-box;
}
body {
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
background-color: #34db7a;
}
.container {
background-color: #fff;
height: 260px;
width: 400px;
border-radius: 10px;
padding: 20px;
transition: 0.2s;
}
.active {
height: 500px;
}
.qr-header {
text-align: center;
}
.qr-header h1 {
font-size: 1.8rem;
margin-bottom: 10px;
}
.qr-header {
color: #444;
font-size: 0.9rem;
}
.qr-form {
margin: 20px 15px;
}
.qr-form input,
.qr-form button {
width: 100%;
height: 55px;
border: none;
border-radius: 5px;
font-size: 0.9rem;
}
.qr-form input {
border: 1px solid #777;
padding: 10px 15px;
}
.qr-form button {
background-color: #086824;
color: #fff;
font-size: 1.2rem;
margin-top: 20px;
cursor: pointer;
opacity: 0.9;
transition: 0.4s;
}
.qr-form button:hover {
background-color: #fff;
color: #086824;
border: solid 1px #086824;
}
.qr-code {
display: flex;
justify-content: center;
align-items: center;
opacity: 0;
transition: 0.5s;
}
.active .qr-code {
opacity: 1;
}