-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
105 lines (101 loc) · 1.87 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
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
body {
background: #11131f;
max-width: 920px;
margin-left: auto;
margin-right: auto;
color: #d2d4e3;
font-family: "Inter", sans-serif;
}
h1 {
margin-top: 1em;
margin-bottom: 12px;
color: #f9f9fb;
font-family: "Fire Sans", sans-serif;
font-size: 3em;
text-align: left;
line-height: 1.6em;
}
section#buttons {
display: block;
margin-top: 40px;
margin-bottom: 20px;
padding-top: 20px;
padding-bottom: 20px;
text-align: left;
width: auto;
margin-left: auto;
}
#buttons a {
display: inline-block;
padding: 20px;
margin: 0.25em;
cursor: pointer;
font-family: "Fira sans", serif;
font-size: 1.2em;
border-radius: 5px;
border: 2px solid #11131f;
transition: border-color 0.5s;
text-decoration: none;
color: black;
}
#buttons a.main {
background: #00ff5a;
}
#buttons a.alt {
background: #c3c6d9;
}
#buttons a:hover {
border-color: #a9ff00;
}
p {
font-weight: 300;
text-align: left;
font-size: 1.2em;
max-width: 800px;
}
iframe {
width: 560px;
display: block;
margin: 0.5em 0.5em 100px 0;
}
.reference {
color: #00ff5a;
background: black;
padding: 0.25em;
}
a.reference-link:link, a.reference-link:visited, a.reference-link:active {
color: #f9f9fb;
}
a.reference-link:hover {
color: #00ff5a;
background: black;
border-bottom: 5px solid black;
border-left: 10px solid black;
border-right: 10px solid black;
border-top: 3px solid black;
transition-property: background, color, border;
transition-duration: 250ms;
}
.reference-link {
text-decoration: none;
border-bottom: 5px solid #00ff5a;
border-left: 2px solid transparent;
border-right: 2px solid transparent;
border-top: 3px solid transparent;
}
canvas{
display: block;
vertical-align: bottom;
}
#particles-js{
position: absolute;
left: 0;
z-index: -1;
top: 0;
width: 100%;
height: 100%;
background-color: #11131f;
background-repeat: no-repeat;
background-size: cover;
background-position: 50% 50%;
}