-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
161 lines (158 loc) · 3.05 KB
/
Copy pathstyle.css
File metadata and controls
161 lines (158 loc) · 3.05 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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
html {
background-color: #17224d;
scrollbar-color: skyblue #00000000;
}
body {
font-family: "Mona Sans", sans-serif;
background: #17224d;
text-align: center;
padding-top: 50px;
color: white;
align-content: center;
justify-content: center;
display: flex;
}
#status img {
border-radius: 25px;
}
.pfp {
border-radius: 25px;
width: 100px;
}
.sitelink img {
border-radius: 5px;
}
.sitelink:hover {
/* This is actually valid CSS; VS Code just doesn't want to accept it. */
color: attr(hltext type(<color>));
background-color: attr(hlbg type(<color>));
}
a {
color: #7f94fd;
text-decoration: none;
font-weight: bold;
background-color: #ffffff00;
border-radius: 100px;
justify-content: center;
padding: 10px 5px;
display: flex;
align-items: center;
gap: 5px;
text-decoration: none;
transition: all 1s cubic-bezier(0.3, 0.94, 0.3, 0.95);
}
.navbar a,
button,
input {
color: #465ac1;
}
button,
input {
text-decoration: none;
font-weight: bold;
background-color: #50b4eb;
border-radius: 100px;
justify-content: center;
padding: 10px 5px;
display: flex;
align-items: center;
gap: 5px;
text-decoration: none;
transition: all 1s cubic-bezier(0.3, 0.94, 0.3, 0.95);
border: solid 0px;
align-self: center;
justify-self: center;
margin: 20px;
}
input[type="range"] {
padding: 0;
}
input {
color: white;
}
a:hover,
button:hover:enabled {
cursor: pointer;
text-decoration: underline;
font-weight: bolder;
background-color: #8da6ffec;
padding: 10px 15px;
transition: all 1s cubic-bezier(0.3, 0.94, 0.3, 0.95);
font-size-adjust: 10px;
}
a:hover {
color: #2e4ff6;
}
#about,
.code {
border-radius: 25px;
background-color: #3b3c3fe0;
padding: 10px 5px;
justify-self: center;
font-size: 14px;
}
#about {
width: 30%;
max-height: 150px;
overflow-y: auto;
}
.code {
font-family: "Cascadia Code", monospace;
padding: 10px;
}
.but {
width: 50%;
border-radius: 100px;
border-color: #24baec;
border: solid 0.5px;
margin-bottom: 25px;
}
.links,
.navbar,
#friendsites {
display: flex;
justify-content: center;
gap: 15px;
}
a img {
width: 25px;
}
.sitelinkbutton {
width: auto;
}
.navbar {
background-color: skyblue;
display: flex;
min-width: fit-content;
padding: 5px;
margin: 0 0 10px 0;
align-content: center;
justify-content: center;
justify-self: center;
border-radius: 100px;
}
::placeholder {
color: #b8cfe4;
opacity: 1; /* Stupid stuff for Firefox, or so I've been told */
font-weight: thin;
font-style: italic;
}
.main {
width: 100%;
}
#minesweeper {
justify-self: center;
width: fit-content;
display: grid;
grid-template-columns: repeat(attr(mswidth type(<number>)), 20px);
grid-template-rows: repeat(attr(msheight type(<number>)), 20px);
gap: 10px;
}
#minesweeper button {
width: 25px;
height: 25px;
border-radius: 5px;
}
#minesweeper button:disabled {
background-color: #3c8cb6;
}