-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscreen.css
More file actions
69 lines (58 loc) · 1.24 KB
/
screen.css
File metadata and controls
69 lines (58 loc) · 1.24 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
* {
margin: 0;
padding: 0;
border: 0;
vertical-align: baseline;
}
.preload * {
transition: none !important;
}
body {
background-color: #fff;
font: 100%/1.375 "helvetica neue", helvetica, tahoma, sans-serif;
font-weight: 400;
}
.navigation-container {
margin: 2% auto;
background-color: #fff;
border-bottom: 1px solid #dddcde;
max-width: 960px;
min-width: 630px;
}
.navigation-item-group {
position: relative;
list-style: none;
margin: 0 27px;
padding: 0;
display: flex;
justify-content: space-evenly;
}
.navigation-item-group li {
display: inline-block;
padding-bottom: 6px;
}
.navigation-item-group li a {
font-size: 14px;
display: block;
float: left;
text-decoration: none;
color: #9e9e9f;
}
.navigation-item-group li a:hover {
color: #377ecb;
}
.navigation-item-group li.navigation-item-selected a,
.navigation-item-group li.navigation-item-selected a:hover {
color: #222123;
}
.navigation-item-group #sliding-line {
position: absolute;
bottom: -1px;
left: 0;
width: 100px;
height: 2px;
border-bottom: 1px solid #010001;
padding: 0 0 0 0;
transition-property: left, width;
transition: .4s ease-in-out;
}