-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmy-custom.css
More file actions
executable file
·64 lines (64 loc) · 917 Bytes
/
my-custom.css
File metadata and controls
executable file
·64 lines (64 loc) · 917 Bytes
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
body {
display: grid;
grid-template-columns: 15% 70% 15%;
p {
text-align: left;
font-size: 15px;
}
h1 {
text-align: left;
font-size: 30px;
}
h2 {
text-align: left;
font-size: 27px;
}
h3 {
text-align: left;
font-size: 24px;
}
h4 {
text-align: left;
font-size: 21px;
}
h5 {
text-align: left;
font-size: 18px;
}
h6 {
text-align: left;
font-size: 18px;
}
ul {
display: block;
font-size: 15px;
}
ol {
display: block;
font-size: 15px;
}
table, th, td {
border: 1px solid;
font-size: 15px;
}
table {
width: 100%;
border-collapse: collapse;
}
hr {
height: 2px;
width: 800px
}
details[open] {
background: #ffffe6;
}
summary::marker {
color: #e162bf;
font-size: 1.2em; }
/* Add class="center" to img when use this */
.center {
display: block;
margin-left: auto;
margin-right: auto;
/* width: 35%; */
}