-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
59 lines (51 loc) · 838 Bytes
/
styles.css
File metadata and controls
59 lines (51 loc) · 838 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
font-family: "IBM Plex Mono", monospace;
}
h1 {
font-size: 2rem;
margin-bottom: 0.5rem;
}
a {
/* text-decoration: none; */
color: black;
}
#PageWrapper {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
width: 100%;
height: 100vh;
background: rgb(240, 232, 219);
}
#Image {
margin: 2.5rem 0rem;
height: 400px;
width: 400px;
border: 6px solid rgb(151, 151, 151);
outline: 3px solid rgb(185, 113, 125);
}
.image-row {
display: flex;
height: 1px;
}
.singleton {
height: 1px;
width: 1px;
}
button {
font-family: "IBM Plex Mono", monospace;
font-size: 1.15rem;
padding: 0.75rem 2rem;
border: none;
border-radius: 5px;
background: rgb(185, 113, 125);
color: white;
letter-spacing: 0.1em;
cursor: pointer;
}