-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpause.css
110 lines (93 loc) · 1.66 KB
/
pause.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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
@font-face {
font-family: "arcade";
src: url("../fonts/ARCADECLASSIC.TTF");
}
html,
body {
margin: 0;
font-family: "arcade", sans-serif;
}
body {
background: black;
height: 100vh;
}
.content {
box-sizing: border-box;
padding:1rem 5rem;
display: flex;
align-items: end;
justify-content: center;
height: 100%;
}
.banner {
padding: 1rem;
color: #fff;
font-size: 3rem;
font-weight: bold;
top: 1vh;
left: 40%;
text-align: center;
}
canvas {
border: 1px solid #f8f990;
background-color: #bababa;
}
.canvas-wrapper {
margin: 0 auto;
}
.message-wrapper {
height: 645px;
width: 360px;
background: #152238;
border: 1px solid #f8f990;
overflow-y: hidden;
}
.message-wrapper .message {
margin: 1rem;
background-color: #ffffff80;
border-radius: 5px;
font-size: 1rem;
padding: 0.25rem 0.5rem;
}
.message-wrapper .message p {
margin: 0;
}
.message-wrapper .message .user-info {
font-weight: bold;
text-shadow: 2px 3px 5px rgba(21, 18, 7, 0.8);
}
.emoticon {
max-width: 24px;
margin: 0.25rem;
}
.scanlines {
mix-blend-mode: difference;
position: relative;
}
.scanlines::before {
content: "";
position: absolute;
width: 100%;
height: 100%;
inset: 0;
background: repeating-linear-gradient(
to bottom,
transparent 0%,
rgba(255, 255, 255, 0.05) 0.5%,
transparent 1%
);
animation: fudge 7s ease-in-out alternate infinite;
}
.text-wrapper {
font-size: 1.5rem;
}
.score-text {
color: red;
margin: 0;
}
.score-text span {
color: yellow;
}
.info-text {
color: rgb(200, 199, 199);
}