-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
68 lines (64 loc) · 1.17 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
.form {
font-family: Helvetica, sans-serif;
max-width: 400px;
margin: 0 auto;
padding: 16px;
background: #f7f7f7;
}
.form h1 {
background: #5868bf;
padding: 20px 0;
font-weight: 300;
text-align: center;
color: #fff;
margin: -16px -16px 16px -16px;
font-size: 25px;
}
.form input[type="text"],
.form input[type="url"] {
box-sizing: border-box;
width: 100%;
background: #fff;
margin-bottom: 4%;
border: 1px solid #ccc;
padding: 3%;
color: #555;
}
.form input[type="text"]:focus,
.form input[type="url"]:focus {
box-shadow: 0 0 5px #5868bf;
padding: 3%;
border: 1px solid #5868bf;
}
.form button {
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
width: 150px;
margin: 0 auto;
padding: 3%;
background: #5868bf;
border-bottom: 2px solid #5868bf;
border-top-style: none;
border-right-style: none;
border-left-style: none;
color: #fff;
cursor: pointer;
}
.form button:hover {
background: rgba(88,104,191, 0.5);
}
#qrcode-container{
display:none;
}
.qrcode{
padding: 16px;
}
.qrcode img{
margin: 0 auto;
}
.center {
display: flex;
justify-content: center;
align-items: center;
}