forked from Monsoonjr99/cyclone-sim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
49 lines (43 loc) · 805 Bytes
/
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
body{
background: #BBB;
background: -o-linear-gradient(#BBB,#F3F3F3);
background: -webkit-linear-gradient(#BBB,#F3F3F3);
background: -moz-linear-gradient(#BBB,#F3F3F3);
background: linear-gradient(#BBB,#F3F3F3);
font-family: Calibri, Arial;
}
a{
display: inline-block;
text-decoration: none;
color: blue;
}
#version{
position: fixed;
bottom: 0px;
right: 0px;
color: #777;
padding: 10px;
z-index: 100;
user-select: none;
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
}
a:after{
display: block;
content: '';
border-bottom: solid 1px black;
transform: scaleX(0);
transition: transform 300ms;
}
a:hover, a#version:hover{
color: black;
transform-origin: 50% 50%;
}
a:hover:after{
transform: scaleX(1);
}
ul{
list-style: none;
text-align: center;
}