blob: d6261ce897c2acea112ae8c85f31d83bad372351 (
about) (
plain)
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
|
@font-face{
src: url( "../fonts/FiraCode-Regular.ttf" );
font-family: "Fira Code Regular";
font-display: swap;
}
html{
font-family: "Fira Code Regular";
background-color: #1F1F2C;
background-attachment: fixed;
background-size: cover;
background-repeat: none;
background-position: center;
width: 100%;
height: 100%;
margin: 0px;
}
body{
font-family: "Fira Code Regular";
background-color: #1F1F2C;
background-attachment: fixed;
background-size: cover;
background-repeat: none;
background-position: center;
width: 100%;
height: 100%;
margin: 0px;
}
.full-page-menu{
background-color: rgba( 31, 31, 31, 0.7 );
backdrop-filter: blur( 5px );
display: none;
position: fixed;
top: 0px;
margin: 0px;
z-index: 999;
width: 100%;
height: 100%;
word-wrap: break-word;
}
.full-page-menu-title{
position: relative;
font-size: 32px;
color: #FFFFFF;
text-align: center;
margin: auto;
}
.full-page-menu-link{
display: block;
font-size: 24px;
color: #FFFFFF;
text-align: center;
margin: auto;
width: 100%;
}
.full-page-menu-link:hover{
background-color: #FFFFFF;
color: #000000;
font-size: 28px;
transition-duration: 0.25s;
-moz-transition-duration: 0.25s;
-webkit-transition-duration: 0.25s;
}
.full-page-menu-link:not(:hover){
transition-duration: 0.25s;
-moz-transition-duration: 0.25s;
-webkit-transition-duration: 0.25s;
}
.container{
background-color: #1F1F33;
width: 95%;
height: 100%;
position: relative;
margin: auto;
box-shadow: 0px 0px 5px #000000;
}
.container-inner{
width: 95%;
position: relative;
word-wrap: break-word;
margin: auto;
padding-bottom: 10px;
}
@media screen and (width <= 576px){
.container{
background-color: #1F1F33;
width: 100%;
height: 100%;
position: relative;
margin: 0px;
top: 0px;
box-shadow: 0px 0px 0px #000000;
}
}
.text-title{
font-size: 24px;
color: #FFFFFF;
position: relative;
}
.text-white{
font-size: 16px;
color: #FFFFFF;
position: relative;
}
.page-link{
font-size: 20px;
color: #FFFFFF;
text-decoration: none;
position: relative;
font-weight: bold;
display: inline-block;
}
.page-link:hover{
text-decoration: underline;
transition-duration: 0.25s;
-moz-transition-duration: 0.25s;
-webkit-transition-duration: 0.25s;
}
.page-link:not(:hover){
transition-duration: 0.25s;
-moz-transition-duration: 0.25s;
-webkit-transition-duration: 0.25s;
}
|