forked from CodeYourFuture/css-skin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathskin.css
More file actions
76 lines (75 loc) · 1.37 KB
/
skin.css
File metadata and controls
76 lines (75 loc) · 1.37 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
.highlight {
background-color: #ddd;
}
/*button.btn {
border-radius: 3px;
border-style: solid;
border-width: 1px;
font-weight: normal;
line-height: 1.15;
text-align: center;
vertical-align: middle;
}*/
.btn {
display: inline-block;
font-weight: 500;
line-height: 1.25;
text-align: center;
white-space: nowrap;
vertical-align: middle;
user-select: none;
border: 1px solid transparent;
padding: 0.8rem 4rem;
font-size: 1rem;
border-radius: .25rem;
color: #0275d8;
background-color: #fff;
border-color: #ccc;
}
.btn--primary {
color: #fff;
background-color: #0275d8;
border-color: #0275d8;
}
.btn--secondary {
color: #292b2c;
background-color: #eee;
border-color: #ccc;
}
.btn--large {
padding: 1rem 6rem;
font-size: 1.25rem;
border-radius: .3rem;
}
.btn--extra-large {
padding: 1.25rem 8.5rem;
font-size: 1.5rem;
border-radius: .3rem;
}
.nav {
width: 25%;
padding: 0;
margin: 0;
list-style: none;
}
.nav--link {
color: #0275d8;
text-decoration: none;
padding: 8px 14px;
margin-bottom: -1px;
margin-right: -1px;
border: 1px solid #e5e5e5;
display: inline-block;
border-radius: 2px;
}
.nav--link:hover {
background: #f5f5f5;
}
.nav-col {
display: flex;
flex-direction: column;
}
.nav-row {
display: flex;
flex-direction: row;
}