-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
97 lines (91 loc) · 1.72 KB
/
styles.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
body {
background-image: url(/img/grass.jpg);
background-size: 50%;
border: 2px solid transparent;
border-radius: 10px;
box-shadow: 0 0 0 15px #43741a, 0 0 0 4px #f0f0f0;
width: 400px;
height: 550px;
}
h1 {
font-family: "Comic Sans MS", cursive, sans-serif;
color: aliceblue;
font-size: 300%;
text-align: center;
user-select: none;
}
.by {
position: fixed;
bottom: 0px;
left: 128px;
color: aliceblue;
cursor: pointer;
background-color: #8bb837;
border-radius: 7px;
padding: 5px;
}
.custom-cursor {
cursor: url("/img/hand.cur"), pointer;
}
.icons {
color: #f0f0f0;
cursor: pointer;
}
.icons #settings {
position: fixed;
top: 60px;
left: 30px;
}
#history {
position: fixed;
top: 60px;
right: 30px;
cursor: pointer;
color: #f0f0f0;
}
.history-menu {
display: none;
position: absolute;
top: 90px;
right: 25px;
width: 220px;
height: 410px;
background-color: #8bb837;
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
cursor: pointer;
font-size: 12px;
user-select: none;
}
#muteButtonContainer {
cursor: pointer;
margin-bottom: 15px;
text-align: center;
}
.settings-menu {
display: none;
position: absolute;
top: 90px;
left: 25px;
width: 100px;
height: 100px;
background-color: #8bb837;
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
cursor: pointer;
}
.settings-menu button {
display: block;
width: 100%;
padding: 6px;
margin-top: 4px;
margin-bottom: 4px;
background-color: #928c8c;
text-align: left;
cursor: pointer;
border: 2px solid transparent;
border-radius: 10px;
box-shadow: 0 0 0 2px #8bb837;
}