forked from alectrolytes/alectrolytes.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
112 lines (100 loc) · 1.63 KB
/
stylesheet.css
File metadata and controls
112 lines (100 loc) · 1.63 KB
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
body {
background: #F8F8FF;
margin: 5%;
padding-top: 1em;
font-family: Helvetica, Arial;
}
.navbar-fixed-top .container {
height: 4.7em;
width: 100%;
position: absolute;
background-color: #F8F8FF;
border-bottom: 1px solid #B0C4DE;
padding-top: auto;
padding-bottom: auto;
left: 0;
right: 0;
}
.navbar {
width: 100%;
display: inline;
font-size: 1.25em;
font-weight: bold;
color: #00CC99;
position: absolute;
margin: auto;
padding-top: auto;
padding-bottom: auto;
cursor: default;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.box {
display: inline-block;
height: 2.5em;
width: 8em;
position: relative;
text-align: center;
padding: .5em;
margin: .5em;
}
.box span {
position: absolute;
background: none;
-moz-transition: 0.4s ease;
-o-transition: 0.4s ease;
-webkit-transition: 0.4s ease;
transition: 0.4s ease;
}
.box span.top {
width: 100%;
height: 2px;
top: 0;
left: -140%;
}
.box:hover span.top {
left: 0;
background: #00CC99
}
.box span.right {
height: 100%;
width: 2px;
right: 0;
top: -140%;
}
.box:hover span.right {
top: 0;
background: #00CC99
}
.box span.bottom {
width: 100%;
height: 2px;
bottom: 0;
right: -140%;
}
.box:hover span.bottom {
right: 0;
background: #00CC99
}
.box span.left {
height: 100%;
width: 2px;
left: 0;
bottom: -140%;
}
.box:hover span.left {
bottom: 0;
background: #00CC99;
}
.boxlink {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
text-decoration: none;
}