-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheatsheet_lists_style.css
135 lines (106 loc) · 2.18 KB
/
cheatsheet_lists_style.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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/*==================================
My practice and cheatsheet CSS page
===================================*/
/*================
declare variables
=================*/
:root {
}
/*===============
main page layout
================*/
html {
background: black;
font-family: Helvetica, Arial, sans-serif;
font-size: 10px;
color: white;
}
* {
box-sizing: border-box;
}
article {
display: flex;
flex-flow: row wrap;
align-items: center;
justify-content: center;
}
section {
padding: 5px;
}
h1 {
font-size: 2rem;
}
ul,ol,dl,p {
font-size: 1.5rem;
}
li, p, dd, dt {
line-height: 1.5;
}
.style {
background-color: var(--white);
border: solid 2px red;
margin: 5px;
padding: 5px;
}
/*list style types or bullet points*/
#style-type-bullet ul li:nth-child(1){
list-style-type: circle;
}
#style-type-bullet ul li:nth-child(2){
list-style-type: disc;
}
#style-type-bullet ul li:nth-child(3){
list-style-type: square;
}
#style-type-bullet ul li:nth-child(4){
list-style-type: none;
}
/*list style types for numbered lists*/
#style-type-number ol li:nth-child(1) {
list-style-type: decimal;
}
#style-type-number ol li:nth-child(2) {
list-style-type: decimal-leading-zero;
}
#style-type-number ol li:nth-child(3) {
list-style-type: lower-alpha;
}
#style-type-number ol li:nth-child(4) {
list-style-type: lower-latin;
}
#style-type-number ol li:nth-child(5) {
list-style-type: lower-roman;
}
#style-type-number ol li:nth-child(6) {
list-style-type: upper-alpha;
}
#style-type-number ol li:nth-child(7) {
list-style-type: upper-roman;
}
/*list style positions*/
#style-position ul li:nth-child(2) {
list-style-position: inside;
}
#style-position ul li:nth-child(3) {
list-style-position: outside;
}
/*list style images for bullets*/
#style-image ul li:nth-child(1) {
list-style-type: square;
list-style-image: url("");
}
#style-image ul li:nth-child(2) {
padding-left: 2rem;
background-image: url(star.svg);
background-position: 0 0;
background-size: 1.6rem 1.6rem;
background-repeat: no-repeat;
}
/*list style with strings for bullets*/
#style-string ul {
list-style: none;
}
#style-string ul li:before {
content: "+";
padding-right: 5px;
}