-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
47 lines (43 loc) · 724 Bytes
/
main.css
File metadata and controls
47 lines (43 loc) · 724 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
html, body {
padding: 0;
margin: 0;
text-align: center;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.drep-container {
padding: 20px;
width: 300px;
height: 280px;
background: #36393f;
color: white;
}
.drep-container img {
width: 100px;
}
#scanButton {
cursor: pointer;
color: white;
font-size: 25px;
width: 250px;
height: 50px;
background: #2a2d31;
border: 4px solid #181a1d;
border-radius: 10px;
transition: .5s;
}
#scanButton:hover {
font-size: 25px;
width: 250px;
height: 50px;
background: rgb(31, 33, 36);
border-radius: 20px;
}
.disclaimer {
font-weight: 500;
color: orangered;
}