-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdiscordstyle.css
More file actions
78 lines (75 loc) · 1.41 KB
/
discordstyle.css
File metadata and controls
78 lines (75 loc) · 1.41 KB
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
69
70
71
72
73
74
75
76
77
78
html, body {
height: 100%;
width: 100%;
margin: 0;
overflow: hidden;
background: #F3F7FF;
}
.shape {
position: absolute;
width: 50px;
height: 50px;
transform: scale(0.8);
}
.cir {
position: absolute;
border-radius: 50%;
z-index: 5;
}
.btn-contain {
width: 200px;
height: 100px;
position: absolute;
top: 200%;
left: 50%;
transform: translate(-50%, -50%);
}
.btn {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 4px;
background: #333;
text-align: center;
z-index: 10;
transition: 0.2s;
cursor: pointer;
color: #fff;
box-shadow: 0px 1px 5px 2px #BFCEEF;
}
.btn:active, .btn:hover, .btn:focus {
outline: none !important;
color: white;
}
.btn-particles {
width: 100px;
height: 100px;
position: absolute;
text-align: center;
border-radius: 500%;
color: #eee;
font-family: monospace;
z-index: 5;
/* filter: url(#gooeyness); */
}
.btn:active {
transform: scale(0.9) translate(-55%, -55%);
}
.button {
background-color: #340b75; /* Purple */
border: none;
color: white;
padding: 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
.button1 {border-radius: 2px;}
.button2 {border-radius: 4px;}
.button3 {border-radius: 8px;}
.button4 {border-radius: 12px;}
.button5 {border-radius: 50%;}