-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
144 lines (125 loc) · 2.3 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
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
138
139
140
141
142
143
144
body {
margin:0px;
padding: 0px;
}
#gradient
{
position: absolute;
width: 100%;
height: 800px;
padding: 0px;
margin: 0px;
z-index: 0;
}
canvas {
vertical-align: top;
position: absolute;
margin-top: 50px;
margin-right: 50px;
margin-left: 50px;
margin-bottom: 50px;
z-index: 1;
}
a {
position:relative;
text-decoration: none;
color: #00ffcc;
}
a:before{
content: "";
position: absolute;
width: 100%;
height: 3px;
bottom: 0;
left: 0;
background-color: #00ffcc;
visibility: hidden;
-webkit-transform: scaleX(0);
transform: scaleX(0);
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
}
a:hover:before {
visibility: visible;
-webkit-transform: scaleX(1);
transform: scaleX(1);
}
#title-box {
margin-top: 0;
position:absolute;
width: 100%;
height: 100vh;
z-index: 2;
display: flex;
align-items: center;
}
#title{
width: 100%;
font-family: 'Palanquin', sans-serif;
font-variant: small-caps;
font-size:600%;
font-weight:600;
text-align: center;
color: #00ffcc;
/*animation: neon .08s ease-in-out infinite alternate;*/
}
#main {
margin: 50px;
padding: 10px;
position: absolute;
width: 90%;
height: 85vh;
z-index: 3;
display: flex;
flex-direction: row;
justify-content: space-between;
}
#left{
width: auto;
height:50px;
position: relative;
width:auto;
height: auto;
display: flex;
flex-direction: column;
justify-content: space-between;
}
#right{
width: auto;
height:50px;
position: relative;
width:auto;
height: auto;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.menu{
width: 100px;
height : 50px;
font-family: 'Palanquin', sans-serif;
font-variant: small-caps;
font-size:100%;
font-weight:600;
text-align: center;
}
@keyframes neon {
from {
text-shadow:
0 0 6px rgba(202,228,225,0.92),
0 0 30px rgba(202,228,225,0.34),
0 0 12px rgba(30,132,242,0.52),
0 0 21px rgba(30,132,242,0.92),
0 0 34px rgba(30,132,242,0.78),
0 0 54px rgba(30,132,242,0.92);
}
to {
text-shadow:
0 0 6px rgba(202,228,225,0.98),
0 0 30px rgba(202,228,225,0.42),
0 0 12px rgba(30,132,242,0.58),
0 0 22px rgba(30,132,242,0.84),
0 0 38px rgba(30,132,242,0.88),
0 0 60px rgba(30,132,242,1);
}
}