forked from zero-to-mastery/JS_Fun_Practice
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
59 lines (51 loc) · 925 Bytes
/
style.css
File metadata and controls
59 lines (51 loc) · 925 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
body {
margin: 0;
padding: 0;
display: flex;
}
.header {
text-align: center;
}
h1 {
color:#585a28;
box-shadow: 5px 10px;
}
.container {
display: flex;
background-color: beige;
box-shadow: 1px 1px 10px grey;
margin: 2% 18px;
padding: 10px 5px 5px 10px;
}
dl {
display: block;
margin-block-start: 1em;
margin-block-end: 1em;
margin-inline-start: 0px;
margin-inline-end: 0px;
}
dd {
color: #24292E;
font: -apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;
margin: 0px 0px 16px;
font-size: 16px;
padding: 0px 16px;
}
dt {
color: #24292E;
font: 16px;
margin: 0px 0px 16px;
}
code {
color: #24292E;
font: 15px SFMono-Regular,Consolas;
background: rgba(27, 31, 35. 0.05);
padding: 3px 6px;
font-style: italic;
font-weight: 600;
}
p {
color: #24292E;
font: 16px;
margin: 0px 0px 16px;
}