-
Notifications
You must be signed in to change notification settings - Fork 0
/
nav.css
58 lines (52 loc) · 1.05 KB
/
nav.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 {
/*font: 13px/20px 'Lucida Grande', Tahoma, Verdana, sans-serif;
color: #404040; */
height:964px;
background: #0ca3d2;
background-image:url(loginbg.jpg);
background-repeat:no-repeat;
background-size:cover;
}
*, *:before, *:after {
box-sizing: border-box;
}
.btngroup {
float:right;
font-size: 0;
line-height: 1;
white-space: nowrap;
display: inline;
}
.btngroup--btn {
font-size: 1rem;
letter-spacing: .1em;
text-decoration: none;
text-transform: uppercase;
background: transparent;
border: 2px solid #7f8c8d;
border-left-width: 0;
display: inline-block;
padding: .5em 1.25em;
outline: 0;
}
.btngroup--btn:first-child {
border-left-width: 2px;
border-radius: 2em 0 0 2em;
}
.btngroup--btn:last-child {
border-radius: 0 2em 2em 0;
}
.btngroup--btn:link {
color: #bdc3c7;
}
.btngroup--btn:visted {
color: #bdc3c7;
}
.btngroup--btn:hover {
background: #34495e;
color: #fff;
}
.btngroup--btn:active {
background: #1881ba;
color: #34495e;
}