-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathqrcode.css
More file actions
54 lines (48 loc) · 803 Bytes
/
Copy pathqrcode.css
File metadata and controls
54 lines (48 loc) · 803 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
body{
background: #0d1117;
font-family:'Courier New';
}
.container{
width: 350px;
left: 50%;
top: 50%;
right: 50%;
position: absolute;
background: #161b22;
padding: 30px 50px;
transform: translate(-50%,-50%);
border-radius: 10px;
}
.container h1{
color: #c9d1d9;
}
.container p{
color: #c9d1d9;
margin: 30px 0px 0px 0px;
}
.container input{
width: 95%;
height: 30px;
border: 1px solid white;
border-color: #c9d1d9;
margin: 10px 0 10px 0;
color: #c9d1d9;
background: #0d1117;
top: 10px;
border-radius: 5px;
}
.container button{
width: 97%;
height: 30px;
top: 10px;
background: #238638;
border: 0px;
margin-top: 10px;
color: white;
border-radius: 5px;
box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
cursor: pointer;
}
.btn:hover{
background-color: #2fb64a;
}