-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
70 lines (53 loc) · 963 Bytes
/
Copy pathstyle.css
File metadata and controls
70 lines (53 loc) · 963 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
65
66
67
68
69
/* Recipe Stylesheet */
* {
] margin: 0 auto;
box-sizing: border-box;
}
html {
background-color: rgb(138, 255, 255);
font-family: 'Helvetica', 'Times New Roman', Times, serif;
box-sizing: border-box;
margin: 0;
padding: 0;
font-size: 18px;}
}
body {
}
h1, h2, h3 {
font-weight: bold;
margin: 12px auto;
display: block;
text-align: center;
}
h1 {
border: 4px solid black;
font-size: 24px;
display: block;}
h2 {
}
h3 {
}
strong {
font-weight: bold;
text-align: center;
font-size: 18px;
}
/* Combine P and li rules as a group for common items like padding */
p {
background-color: rgb(171, 230, 171);
color: black;
border: 2px dashed red;
padding: 12px;
margin: 4px auto;
font-size: 18px;
text-align: left;
}
li > em {
color: purple;
border: 1px solid black;
padding: 12px;
margin: 4px;
}
a:hover {
color: rgb(4, 0, 255);
}