-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
56 lines (49 loc) · 1.01 KB
/
styles.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
body {
background-color: rgb(15, 15, 15);
color: white;
font-family: 'Courier New', Courier, monospace;
font-size: larger;
}
.meno {
transition-duration: 0.4s;
}
.meno:hover {
text-shadow: 10px;
}
a {
color: rgb(204, 204, 204);
font-family:Arial, Helvetica, sans-serif;
text-decoration-line: none;
background-color: rgb(36, 36, 36);
font-size: x-large;
border: rgb(36, 36, 36) solid 2px;
border-radius: 10px;
border-width: 3px;
border-right-width: 5px;
border-left-width: 5px;
transition-duration: 0.4s;
}
a:hover {
color: white;
box-shadow: 5px;
background-color: rgb(32, 32, 32);
font-size: xx-large;
border: rgb(32, 32, 32) solid 2px;
border-radius: 5px;
border-width: 3px;
border-right-width: 5px;
border-left-width: 5px;
}
.secret {
filter: opacity(0);
transition-duration: 0.4s;
}
.secret:hover {
filter: opacity(0.1)
}
.info {
position: fixed;
left: 300px;
right: 100px;
bottom: 300px;
}