forked from atmospherewtf/Website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
56 lines (47 loc) · 978 Bytes
/
styles.css
File metadata and controls
56 lines (47 loc) · 978 Bytes
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
/* i don care if she 14 15 */
@font-face {
font-family: proggy;
src: url(proggy.ttf);
}
:root {
--accent: #8080FF;
--bg: #191919;
}
body {
font-family: "proggy", Arial, sans-serif;
background-color: var(--bg);
text-align: center;
color: white;
margin: 0;
}
a { color: var(--accent); }
a:hover { color: #ababff; }
#title { cursor: pointer; }
#title:hover { color: #ababff; }
#about {
transform: translate(-50%, -50%);
position: absolute;
left: 50%;
top: 50%;
}
.accent { color: var(--accent); }
.box-content {
border: 2px solid #777;
padding: 20px;
/* the cat photos go under the box, which could make the contents not readable. */
background-color: var(--bg);
}
.box-title {
transform: translateX(-50%);
background: #191919;
position: relative;
width: max-content;
padding-right: 5px;
padding-left: 5px;
top: 1.65em;
left: 50%;
}
#news {
display: flex;
gap: 30em;
}