-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyling.css
More file actions
89 lines (59 loc) · 1.45 KB
/
styling.css
File metadata and controls
89 lines (59 loc) · 1.45 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
87
88
89
/* General styles */
html {
font-family: 'Courier New', Courier, monospace;
font-size: 10px;
background-color: aliceblue;
}
h2 {
font-size: 2rem;
font-weight: bolder;
text-decoration: underline dashed;
}
.curious{
font-style: oblique;
font-weight: lighter;
text-decoration: underline wavy grey;
}
h2:hover,dt:hover{
text-decoration: underline dotted;
}
table{
background-color: beige;
}
a{
color: navy;
text-decoration: underline wavy grey;
}
ul,ol,dl,p {
font-size: 1.5rem;
}
img{
max-width: 100px;
max-height: 200px;
}
li, p {
line-height: 2;
}
/* Unordered list styles */
ul {
padding-left: 2rem;
list-style-type: none;
}
ul li {
padding-left: 2rem;
background-image: url(star.svg);
background-position: 0 0;
background-size: 1.6rem 1.6rem;
background-repeat: no-repeat;
}
/* Ordered list styles */
ol {
list-style-type: upper-roman;
}
/* Description list styles */
dd, dt {
line-height: 1.5;
}
dt {
font-weight: bold;
}