-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
56 lines (47 loc) · 831 Bytes
/
styles.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
* {
margin: 0;
}
body {
background-color: grey;
}
.container {
width: 400px;
padding: 25px 35px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 10px;
background: White;
}
.container p {
font-size: 15px;
margin: 0 0 10px;
}
.container input {
border: 1px solid black;
padding: 10px;
width: 100%;
height: 9px;
cursor: text;
}
.container button {
border: 0;
background: #4caf50;
display: block;
margin: 20px auto auto auto;
text-align: center;
border: 2px solid #4caf50;
padding: 14px 40px;
outline: none;
color: white;
border-radius: 24px;
transition: 0.25s;
cursor: pointer;
}
#qr img {
width: 50%;
height: 50%;
display: block;
margin: 20px auto;
}