-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
65 lines (65 loc) · 1.26 KB
/
style.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
/* *{ */
/* border: 1px solid green; */
/* } */
.noselect {
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Old versions of Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome, Edge, Opera and Firefox */
}
@font-face {
font-family: "ComicSans";
src: url("fonts/comicsans.otf");
}
:root {
font-family: "Comic Sans MS", "Comic Sans", "ComicSans", Arial, Helvetica, sans-serif;
color: #9ece6a;
background: url("assets/snow.gif");
background-color: #1a1b26;
}
div {
text-align: center;
margin: auto;
width: 50%;
}
div#title {
margin-top: 12.5%;
}
div#bio {
padding-top: 1.5%;
}
div#foot {
color: #9aa5ce;
position: fixed;
bottom: 1%;
width: 100%;
height: auto;
}
img#pfp {
border-radius: 50%;
max-width: 200px;
max-height: 200px;
width: auto;
height: auto;
}
div#links a img {
width: 50px;
height: 50px;
padding: 0.25%;
}
.cubeish {
border-radius: 25%;
}
h1 {
color: #f7768e;
}
a:link {
color: #0db9d7;
text-decoration: none;
}
a:visited {
color: #785cad;
}