forked from truecodersio/JavaScript_Operators
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
46 lines (39 loc) · 712 Bytes
/
index.css
File metadata and controls
46 lines (39 loc) · 712 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
* {
box-sizing: border-box;
}
html {
font-size: 20px;
background-color: navy;
}
body {
margin: 0;
}
h1 {
display: flex;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
letter-spacing: 0.125rem;
color: lime;
justify-content: center;
margin: 0.25rem;
}
p {
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
letter-spacing: 0.05rem;
color: hotpink;
display: flex;
align-items: center;
justify-content: center;
margin: 0.2rem;
}
div {
display: flex;
flex-direction: column;
align-items: center;
}
img {
max-height: 20rem;
padding: 0.125rem;
border: 0.125px dashed lime;
margin-top: 0.5rem;
border-radius: 20px;
}