-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
60 lines (52 loc) · 1.21 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
@font-face {
font-family: "Terminus";
src: local("Terminus (TTF) for Windows"), local("Terminus (TTF)"),
url(./font/terminusttf-4.47.0.ttf) format("truetype");
font-weight: normal;
font-style: normal;
}
.vertical-flexbox {
padding: 50px;
height: 100%;
display: flex;
flex-direction: column;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
.social-media-icon {
width: 100px;
height: 100px;
padding: 20px;
}
.social-flexbox {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
* {
padding: 0;
margin: 0;
box-sizing: border-box;
-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 */
}
#title {
color: white;
font-size: 50px;
margin-bottom: 30px;
}
#particles-js {
background-color: #640064;
position: absolute;
width: 100%;
height: 100%;
z-index: -10;
}
a{
text-decoration: none;
}