-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
58 lines (50 loc) · 893 Bytes
/
style.css
File metadata and controls
58 lines (50 loc) · 893 Bytes
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
body {
margin: 0;
padding: 0;
font-family: sans-serif;
box-sizing: border-box;
text-align: center;
background-color: #fff;
}
.container {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.qrbox {
overflow: hidden;
border-radius: 30px;
}
#qrcode {
margin: 30px auto;
width: 200px;
height: 200px;
text-align: center;
}
button {
position: relative;
background-color: transparent;
border: 1px solid #000;
padding: 15px 30px;
border-radius: 5px;
cursor: pointer;
font-weight: 700;
transition: background-color 250ms ease;
}
button:hover {
background-color: orange;
color: #fff;
}
button:active {
top: 5px;
}
#text-input {
padding: 10px 15px;
border-radius: 10px;
border: 1px solid #000;
width: 300px;
}
input:focus {
outline: none;
}