@lottecode/lottecss 0.0.2 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/src/css/accordion.css +73 -0
- package/src/css/button.css +53 -0
- package/src/css/card.css +12 -0
- package/src/css/colors.css +124 -0
- package/src/css/column.css +330 -0
- package/src/css/editorial.css +12 -0
- package/src/css/fonts.css +46 -0
- package/src/css/forms.css +174 -0
- package/src/css/globals.css +144 -0
- package/src/css/header.css +26 -0
- package/src/css/index.css +20 -0
- package/src/css/layout.css +115 -0
- package/src/css/links.css +18 -0
- package/src/css/lists.css +85 -0
- package/src/css/media.css +170 -0
- package/src/css/navigation.css +40 -0
- package/src/css/tables.css +57 -0
- package/src/css/tabs.css +146 -0
- package/src/css/typography.css +239 -0
- package/src/css/utility.css +986 -0
|
@@ -0,0 +1,170 @@
|
|
|
1
|
+
/* Media Styles */
|
|
2
|
+
|
|
3
|
+
/* Basic Images */
|
|
4
|
+
img {
|
|
5
|
+
max-width: 100%;
|
|
6
|
+
height: auto;
|
|
7
|
+
vertical-align: middle;
|
|
8
|
+
border-style: none;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
/* Figure and Caption */
|
|
12
|
+
figure {
|
|
13
|
+
display: inline-block;
|
|
14
|
+
margin: 0 0 1rem;
|
|
15
|
+
max-width: 100%;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
figcaption {
|
|
19
|
+
padding: 0.5rem;
|
|
20
|
+
background-color: var(--color-surface);
|
|
21
|
+
text-align: center;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
/* Responsive Images */
|
|
25
|
+
.responsive-img {
|
|
26
|
+
width: 100%;
|
|
27
|
+
height: auto;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/* Image Shapes */
|
|
31
|
+
.rounded-img {
|
|
32
|
+
border-radius: 0.25rem;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.circle-img {
|
|
36
|
+
border-radius: 50%;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.thumbnail-img {
|
|
40
|
+
padding: 0.25rem;
|
|
41
|
+
background-color: #fff;
|
|
42
|
+
border: 1px solid #dee2e6;
|
|
43
|
+
border-radius: 0.25rem;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
/* Image Alignment */
|
|
47
|
+
.img-left {
|
|
48
|
+
float: left;
|
|
49
|
+
margin-right: 1rem;
|
|
50
|
+
margin-bottom: 0.5rem;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.img-right {
|
|
54
|
+
float: right;
|
|
55
|
+
margin-left: 1rem;
|
|
56
|
+
margin-bottom: 0.5rem;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.img-center {
|
|
60
|
+
display: block;
|
|
61
|
+
margin-left: auto;
|
|
62
|
+
margin-right: auto;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
/* Picture Element */
|
|
66
|
+
picture {
|
|
67
|
+
display: block;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
/* Audio Player */
|
|
71
|
+
audio {
|
|
72
|
+
width: 100%;
|
|
73
|
+
margin-bottom: 1rem;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
/* Video Player */
|
|
77
|
+
video {
|
|
78
|
+
max-width: 100%;
|
|
79
|
+
height: auto;
|
|
80
|
+
margin-bottom: 1rem;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
/* Responsive Video Container */
|
|
84
|
+
.video-container {
|
|
85
|
+
position: relative;
|
|
86
|
+
padding-bottom: 56.25%; /* 16:9 aspect ratio */
|
|
87
|
+
height: 0;
|
|
88
|
+
overflow: hidden;
|
|
89
|
+
margin-bottom: 1rem;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.video-container video,
|
|
93
|
+
.video-container iframe {
|
|
94
|
+
position: absolute;
|
|
95
|
+
top: 0;
|
|
96
|
+
left: 0;
|
|
97
|
+
width: 100%;
|
|
98
|
+
height: 100%;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
/* Iframe Embeds */
|
|
102
|
+
iframe {
|
|
103
|
+
border: 0;
|
|
104
|
+
max-width: 100%;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.iframe-container {
|
|
108
|
+
position: relative;
|
|
109
|
+
width: 100%;
|
|
110
|
+
padding-bottom: 56.25%; /* 16:9 aspect ratio */
|
|
111
|
+
height: 0;
|
|
112
|
+
overflow: hidden;
|
|
113
|
+
margin-bottom: 1rem;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.iframe-container iframe {
|
|
117
|
+
position: absolute;
|
|
118
|
+
top: 0;
|
|
119
|
+
left: 0;
|
|
120
|
+
width: 100%;
|
|
121
|
+
height: 100%;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
/* Media Object Pattern */
|
|
125
|
+
.media {
|
|
126
|
+
display: flex;
|
|
127
|
+
align-items: flex-start;
|
|
128
|
+
margin-bottom: 1rem;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.media-body {
|
|
132
|
+
flex: 1;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
/* Gallery Grid */
|
|
136
|
+
.image-gallery {
|
|
137
|
+
display: grid;
|
|
138
|
+
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
|
|
139
|
+
gap: 1rem;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.image-gallery figure {
|
|
143
|
+
margin: 0;
|
|
144
|
+
height: 100%;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.image-gallery img {
|
|
148
|
+
width: 100%;
|
|
149
|
+
height: auto;
|
|
150
|
+
object-fit: cover;
|
|
151
|
+
display: block;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
/* Image Hover Effects */
|
|
155
|
+
.hover-zoom {
|
|
156
|
+
transition: transform 0.3s ease;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.hover-zoom:hover {
|
|
160
|
+
transform: scale(1.05);
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.hover-opacity {
|
|
164
|
+
opacity: 1;
|
|
165
|
+
transition: opacity 0.3s ease;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.hover-opacity:hover {
|
|
169
|
+
opacity: 0.8;
|
|
170
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
nav {
|
|
2
|
+
display: flex;
|
|
3
|
+
/*background-color: green;*/
|
|
4
|
+
justify-content: space-between;
|
|
5
|
+
align-items: center;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
nav ul, nav ol {
|
|
9
|
+
display: flex;
|
|
10
|
+
flex-direction: row;
|
|
11
|
+
flex-wrap: wrap;
|
|
12
|
+
list-style: none;
|
|
13
|
+
align-items: center;
|
|
14
|
+
padding: 0.5rem;
|
|
15
|
+
margin: 0;
|
|
16
|
+
gap: 1.5rem;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
nav ul li {
|
|
20
|
+
margin: 0;
|
|
21
|
+
padding: 0;
|
|
22
|
+
|
|
23
|
+
& a {
|
|
24
|
+
text-decoration: none;
|
|
25
|
+
color: var(--color-foreground);
|
|
26
|
+
transition: all 0.2s ease;
|
|
27
|
+
padding: 0.25rem 0.5rem;
|
|
28
|
+
/*border-radius: 0.25rem;*/
|
|
29
|
+
|
|
30
|
+
&:hover {
|
|
31
|
+
color: var(--color-foreground);
|
|
32
|
+
background-color: var(--color-accent);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
&.active {
|
|
36
|
+
color: var(--color-foreground);
|
|
37
|
+
background-color: var(--color-accent);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
/* Tables Styles */
|
|
2
|
+
|
|
3
|
+
table {
|
|
4
|
+
width: 100%;
|
|
5
|
+
margin-bottom: 1rem;
|
|
6
|
+
border-collapse: collapse;
|
|
7
|
+
border: 1px solid var(--color-border);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
caption {
|
|
11
|
+
padding: 1rem 0;
|
|
12
|
+
caption-side: top;
|
|
13
|
+
text-align: left;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
th,
|
|
17
|
+
td {
|
|
18
|
+
padding: 0.75rem;
|
|
19
|
+
vertical-align: top;
|
|
20
|
+
text-align: left;
|
|
21
|
+
border-bottom: 1px solid var(--color-border);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
thead th {
|
|
25
|
+
vertical-align: bottom;
|
|
26
|
+
background-color: var(--color-surface);
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
tbody + tbody {
|
|
30
|
+
border-top: 1px solid var(--color-border);
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
tbody tr.cursor-pointer:hover {
|
|
34
|
+
background-color: var(--color-accent);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
tfoot td {
|
|
38
|
+
font-style: italic;
|
|
39
|
+
background-color: var(--color-surface);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
/* Responsive tables */
|
|
43
|
+
.table-responsive {
|
|
44
|
+
display: block;
|
|
45
|
+
width: 100%;
|
|
46
|
+
overflow-x: auto;
|
|
47
|
+
-webkit-overflow-scrolling: touch;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
@media (max-width: 767.98px) {
|
|
51
|
+
.table-responsive-md {
|
|
52
|
+
display: block;
|
|
53
|
+
width: 100%;
|
|
54
|
+
overflow-x: auto;
|
|
55
|
+
-webkit-overflow-scrolling: touch;
|
|
56
|
+
}
|
|
57
|
+
}
|
package/src/css/tabs.css
ADDED
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
/* Tabs Component */
|
|
2
|
+
|
|
3
|
+
.tabs {
|
|
4
|
+
width: 100%;
|
|
5
|
+
position: relative;
|
|
6
|
+
padding-bottom: 0;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.tabs input[type="radio"] {
|
|
10
|
+
display: none;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.tab-nav {
|
|
14
|
+
width: 100%;
|
|
15
|
+
border-bottom: 1px solid var(--color-foreground);
|
|
16
|
+
text-align: center;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.tab-label {
|
|
20
|
+
display: inline-block;
|
|
21
|
+
padding: 0.75rem 1.5rem;
|
|
22
|
+
cursor: pointer;
|
|
23
|
+
border-bottom: 1px solid var(--color-foreground);
|
|
24
|
+
transition: all 0.3s ease;
|
|
25
|
+
color: var(--color-foreground);
|
|
26
|
+
/*background-color: var(--color-background);*/
|
|
27
|
+
margin-bottom: -1px;
|
|
28
|
+
position: relative;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.tab-label:hover {
|
|
32
|
+
background-color: var(--color-surface);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.tabs input[type="radio"]:checked + .tab-label {
|
|
36
|
+
font-weight: 600;
|
|
37
|
+
color: var(--color-foreground);
|
|
38
|
+
background-color: var(--color-surface);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.tab-content {
|
|
42
|
+
display: none;
|
|
43
|
+
padding: 1.5rem 0;
|
|
44
|
+
animation: fadeIn 0.3s ease;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
/* Generic tab content display - supports up to 10 tabs */
|
|
48
|
+
.tabs
|
|
49
|
+
input[type="radio"]:nth-of-type(1):checked
|
|
50
|
+
~ .content
|
|
51
|
+
.tab-content:nth-of-type(1),
|
|
52
|
+
.tabs
|
|
53
|
+
input[type="radio"]:nth-of-type(2):checked
|
|
54
|
+
~ .content
|
|
55
|
+
.tab-content:nth-of-type(2),
|
|
56
|
+
.tabs
|
|
57
|
+
input[type="radio"]:nth-of-type(3):checked
|
|
58
|
+
~ .content
|
|
59
|
+
.tab-content:nth-of-type(3),
|
|
60
|
+
.tabs
|
|
61
|
+
input[type="radio"]:nth-of-type(4):checked
|
|
62
|
+
~ .content
|
|
63
|
+
.tab-content:nth-of-type(4),
|
|
64
|
+
.tabs
|
|
65
|
+
input[type="radio"]:nth-of-type(5):checked
|
|
66
|
+
~ .content
|
|
67
|
+
.tab-content:nth-of-type(5),
|
|
68
|
+
.tabs
|
|
69
|
+
input[type="radio"]:nth-of-type(6):checked
|
|
70
|
+
~ .content
|
|
71
|
+
.tab-content:nth-of-type(6),
|
|
72
|
+
.tabs
|
|
73
|
+
input[type="radio"]:nth-of-type(7):checked
|
|
74
|
+
~ .content
|
|
75
|
+
.tab-content:nth-of-type(7),
|
|
76
|
+
.tabs
|
|
77
|
+
input[type="radio"]:nth-of-type(8):checked
|
|
78
|
+
~ .content
|
|
79
|
+
.tab-content:nth-of-type(8),
|
|
80
|
+
.tabs
|
|
81
|
+
input[type="radio"]:nth-of-type(9):checked
|
|
82
|
+
~ .content
|
|
83
|
+
.tab-content:nth-of-type(9),
|
|
84
|
+
.tabs
|
|
85
|
+
input[type="radio"]:nth-of-type(10):checked
|
|
86
|
+
~ .content
|
|
87
|
+
.tab-content:nth-of-type(10) {
|
|
88
|
+
display: block;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
/* Vertical tabs content display */
|
|
92
|
+
.tabs-vertical
|
|
93
|
+
input[type="radio"]:nth-of-type(1):checked
|
|
94
|
+
~ .content
|
|
95
|
+
.tab-content:nth-of-type(1),
|
|
96
|
+
.tabs-vertical
|
|
97
|
+
input[type="radio"]:nth-of-type(2):checked
|
|
98
|
+
~ .content
|
|
99
|
+
.tab-content:nth-of-type(2),
|
|
100
|
+
.tabs-vertical
|
|
101
|
+
input[type="radio"]:nth-of-type(3):checked
|
|
102
|
+
~ .content
|
|
103
|
+
.tab-content:nth-of-type(3),
|
|
104
|
+
.tabs-vertical
|
|
105
|
+
input[type="radio"]:nth-of-type(4):checked
|
|
106
|
+
~ .content
|
|
107
|
+
.tab-content:nth-of-type(4),
|
|
108
|
+
.tabs-vertical
|
|
109
|
+
input[type="radio"]:nth-of-type(5):checked
|
|
110
|
+
~ .content
|
|
111
|
+
.tab-content:nth-of-type(5) {
|
|
112
|
+
display: block;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
@keyframes fadeIn {
|
|
116
|
+
from {
|
|
117
|
+
opacity: 0;
|
|
118
|
+
transform: translateY(-10px);
|
|
119
|
+
}
|
|
120
|
+
to {
|
|
121
|
+
opacity: 1;
|
|
122
|
+
transform: translateY(0);
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
/* Vertical tabs variant */
|
|
127
|
+
.tabs-vertical {
|
|
128
|
+
display: flex;
|
|
129
|
+
gap: 2rem;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.tabs-vertical .tab-label {
|
|
133
|
+
display: block;
|
|
134
|
+
border-bottom: none;
|
|
135
|
+
border-left: 2px solid transparent;
|
|
136
|
+
margin-bottom: 0.5rem;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.tabs-vertical input[type="radio"]:checked + .tab-label {
|
|
140
|
+
border-left-color: var(--color-foreground);
|
|
141
|
+
border-bottom-color: transparent;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.tabs-vertical .content {
|
|
145
|
+
flex: 1;
|
|
146
|
+
}
|
|
@@ -0,0 +1,239 @@
|
|
|
1
|
+
/* Typography Styles */
|
|
2
|
+
|
|
3
|
+
/* Base Typography */
|
|
4
|
+
body {
|
|
5
|
+
font-family: var(--font-family-sans);
|
|
6
|
+
font-size: 16px;
|
|
7
|
+
line-height: 1.5;
|
|
8
|
+
color: var(--color-foreground);
|
|
9
|
+
font-weight: normal;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
body {
|
|
13
|
+
/* Headings */
|
|
14
|
+
|
|
15
|
+
& h1,
|
|
16
|
+
& h2,
|
|
17
|
+
& h3,
|
|
18
|
+
& h4,
|
|
19
|
+
& h5,
|
|
20
|
+
& h6 {
|
|
21
|
+
padding: 0.75rem 0;
|
|
22
|
+
margin: 0;
|
|
23
|
+
color: var(--color-foreground);
|
|
24
|
+
font-weight: normal;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
& h1 {
|
|
28
|
+
font-size: 1.5rem;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
& h2 {
|
|
32
|
+
font-size: 1.25rem;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
& h3 {
|
|
36
|
+
font-size: 0.825rem;
|
|
37
|
+
text-transform: uppercase;
|
|
38
|
+
margin-bottom: 0.5rem;
|
|
39
|
+
display: block;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
& h4 {
|
|
43
|
+
font-size: 0.825rem;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
& h5 {
|
|
47
|
+
font-size: 0.75rem;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
& h6 {
|
|
51
|
+
font-size: 0.75rem;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
& p,
|
|
55
|
+
& footer *,
|
|
56
|
+
& nav * {
|
|
57
|
+
font-size: 0.6875rem;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
p,
|
|
62
|
+
span,
|
|
63
|
+
a,
|
|
64
|
+
cite,
|
|
65
|
+
q,
|
|
66
|
+
em,
|
|
67
|
+
strong,
|
|
68
|
+
abbr,
|
|
69
|
+
time,
|
|
70
|
+
mark,
|
|
71
|
+
address,
|
|
72
|
+
ul,
|
|
73
|
+
ol,
|
|
74
|
+
li,
|
|
75
|
+
dl,
|
|
76
|
+
dd,
|
|
77
|
+
dt,
|
|
78
|
+
div,
|
|
79
|
+
article,
|
|
80
|
+
section,
|
|
81
|
+
aside,
|
|
82
|
+
blockquote,
|
|
83
|
+
figure,
|
|
84
|
+
figcaption,
|
|
85
|
+
main,
|
|
86
|
+
header,
|
|
87
|
+
footer,
|
|
88
|
+
nav,
|
|
89
|
+
details,
|
|
90
|
+
summary,
|
|
91
|
+
label,
|
|
92
|
+
legend,
|
|
93
|
+
fieldset,
|
|
94
|
+
input,
|
|
95
|
+
select,
|
|
96
|
+
option,
|
|
97
|
+
button,
|
|
98
|
+
textarea,
|
|
99
|
+
caption,
|
|
100
|
+
th,
|
|
101
|
+
td,
|
|
102
|
+
samp,
|
|
103
|
+
kbd,
|
|
104
|
+
var {
|
|
105
|
+
font-size: 0.75rem;
|
|
106
|
+
color: var(--color-foreground);
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
small {
|
|
110
|
+
font-size: 0.715rem;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
/* Paragraphs */
|
|
114
|
+
|
|
115
|
+
p {
|
|
116
|
+
margin-top: 0;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
/* Text Styling */
|
|
120
|
+
|
|
121
|
+
em {
|
|
122
|
+
font-style: italic;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
strong {
|
|
126
|
+
font-weight: 700;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
mark {
|
|
130
|
+
background-color: var(--color-accent);
|
|
131
|
+
padding: 0.2em;
|
|
132
|
+
color: #212529;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
/* Blockquote */
|
|
136
|
+
|
|
137
|
+
blockquote {
|
|
138
|
+
margin: 1rem 0;
|
|
139
|
+
padding: 0.5rem 1rem;
|
|
140
|
+
border-left: 4px solid var(--color-border);
|
|
141
|
+
font-style: italic;
|
|
142
|
+
background-color: var(--color-surface);
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
blockquote p {
|
|
146
|
+
margin-bottom: 0.5rem;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
blockquote cite {
|
|
150
|
+
display: block;
|
|
151
|
+
color: var(--color-accent);
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
/* Semantic Text Elements */
|
|
155
|
+
|
|
156
|
+
abbr {
|
|
157
|
+
text-decoration: underline dotted;
|
|
158
|
+
cursor: help;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
code,
|
|
162
|
+
kbd,
|
|
163
|
+
samp,
|
|
164
|
+
var {
|
|
165
|
+
font-family: var(--font-family-mono);
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
kbd {
|
|
169
|
+
color: var(--color-foreground);
|
|
170
|
+
background-color: var(--color-surface);
|
|
171
|
+
border: 1px solid var(--color-border);
|
|
172
|
+
box-shadow: 0 1px 0 var(--color-border);
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
time {
|
|
176
|
+
color: var(--color-accent);
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
/* Superscript and Subscript */
|
|
180
|
+
|
|
181
|
+
sup,
|
|
182
|
+
sub {
|
|
183
|
+
line-height: 0;
|
|
184
|
+
position: relative;
|
|
185
|
+
vertical-align: baseline;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
sup {
|
|
189
|
+
top: -0.5em;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
sub {
|
|
193
|
+
bottom: -0.25em;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
/* Address */
|
|
197
|
+
|
|
198
|
+
address {
|
|
199
|
+
margin-bottom: 1rem;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
/* Definition Lists */
|
|
203
|
+
|
|
204
|
+
dl {
|
|
205
|
+
margin: 1rem 0;
|
|
206
|
+
padding: 0;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
dt {
|
|
210
|
+
font-weight: 600;
|
|
211
|
+
color: var(--color-foreground);
|
|
212
|
+
margin-top: 0.5rem;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
dt:first-child {
|
|
216
|
+
margin-top: 0;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
dd {
|
|
220
|
+
margin: 0.25rem 0 0.5rem 1.5rem;
|
|
221
|
+
color: var(--color-accent);
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
/* Pre Element */
|
|
225
|
+
|
|
226
|
+
pre {
|
|
227
|
+
display: block;
|
|
228
|
+
font-family: var(--font-family-mono);
|
|
229
|
+
font-size: 0.7rem;
|
|
230
|
+
padding: 1rem;
|
|
231
|
+
margin: 0 0 1rem 0;
|
|
232
|
+
color: var(--color-foreground);
|
|
233
|
+
word-break: break-all;
|
|
234
|
+
word-wrap: break-word;
|
|
235
|
+
background-color: var(--color-surface);
|
|
236
|
+
border: 1px solid var(--color-border);
|
|
237
|
+
border-radius: 0.25rem;
|
|
238
|
+
overflow-x: auto;
|
|
239
|
+
}
|