-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.css
80 lines (67 loc) · 1013 Bytes
/
index.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
html {
background-color: #222222;
color: #EEEEEE;
font-family: 'Libre Franklin', sans-serif;
}
header {
text-shadow: 0px 0px 30px #EA0;
}
.container {
min-width: 520px;
width: 60%;
display: grid;
justify-content: center;
text-align: center;
border: .5vmin solid #EA0;
padding: 1vmin;
margin: 1vmin auto;
background-color: #222222;
transition: 0.3s;
}
a {
color: #EA3;
}
footer {
font-size: 8pt;
color: #EA3;
}
input {
color: #EA0;
border: .1em solid #EA0;
background-color: #222;
}
input:focus {
box-shadow: 0px 0px 4px+.5vmin #EA0;
border-color: #EA0;
}
input:active {
background-color: #640;
}
form {
padding: .5vmin;
}
div {
padding: .5vmin;
}
canvas{
position:absolute;
left:0;
top:0;
z-index:-1;
}
#hideContainers {
position: absolute;
bottom: 0;
left: 0;
right: 0;
margin: 0 auto;
}
#hideContainers:hover ~ .container {
visibility: hidden;
}
#hideContainers:hover {
color: rgba(0,0,0,0);
background-color: rgba(0,0,0,0);
border: none;
transition: 0.3s;
}