forked from diceclubofficial/Pulse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
84 lines (72 loc) · 1.2 KB
/
Copy pathstyle.css
File metadata and controls
84 lines (72 loc) · 1.2 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
79
80
81
82
83
84
* {
box-sizing: border-box;
}
body {
background-color: #000;
}
div {
font-family: monospace;
color: white;
font-size: 40px;
text-align: center;
background-color: #000;
}
#muteButton {
font-size: 30px;
}
.hidden {
display: none;
}
canvas {
border: 1px solid rgba(171,0,186,1);
}
.buttonStyle {
/* display:inline-block; */
margin: 0 auto;
position: relative;
padding: 0.5em;
cursor: pointer;
background: #000;
color: white;
z-index: 0;
border-color: rgba(171,0,186,1);
border-left-style: solid;
border-width: 10px;
width: 40%;
}
.buttonStyle:before {
content: "";
position: absolute;
z-index: -1;
top: 0; left: 0; right: 0; bottom: 0;
background: rgba(224, 147, 231, 0.46);
transform: scaleX(0);
transform-origin: 0 50%;
transition: transform 0.5s ease-out;
}
.buttonStyle:hover:before {
transform: scaleX(1);
}
.buttonStyle:active {
background: rgba(193, 54, 235, 0.66);
}
.smaller {
margin: auto;
width: 50%;
}
#level-select-area {
width: 60%;
}
.scene-levelSelect.buttonStyle {
float: right;
}
.loreText {
font-size: 20px;
margin: auto;
width: 75%;
}
.greyBackground {
background-color: #222;
height: 100%;
padding-bottom: 5%;
}