-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
86 lines (73 loc) · 1.3 KB
/
style.css
File metadata and controls
86 lines (73 loc) · 1.3 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
/*
Theme Name: HDTabs
Theme URI: https://harmonicdesign.ca
Author: Harmonic Design
Author URI: https://harmonicdesign.ca
Description: This theme is for use on *** <strong>only</strong>
*/
html {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
*,
*:before,
*:after {
-webkit-box-sizing: inherit;
-moz-box-sizing: inherit;
box-sizing: inherit;
}
* {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
html,
body {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
font-size: 22px;
line-height: 1.6;
color: #4a4a4a;
font-family: sans-serif;
background: #fefefe;
}
img {
max-width: 100%;
height: auto;
}
/* HDTabs - the actual CSS for this project */
.hdtab_nav {
display: flex;
}
.hdtab_nav_item {
padding: 1rem;
border: 1px solid #aaa;
border-right-color: transparent;
cursor: pointer;
border-bottom: none;
}
.hdtab_nav_item:first-child {
border-top-left-radius: 0.4em;
}
.hdtab_nav_item:last-child {
border-top-right-radius: 0.4em;
border-right-color: #aaa;
}
.hdtab_nav_item_active {
cursor: default;
background-color: #eee;
}
.hdtab_content {
padding: 1rem;
border: 1px solid #aaa;
border-radius: 0.4em;
border-top-left-radius: 0;
}
.hdtab_content_item {
display: none;
}
.hdtab_content_item_active {
display: block;
}