-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
105 lines (89 loc) · 1.89 KB
/
style.css
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap');
body {
font-family: "Poppins", sans-serif;
background-color: #fff;
color: black;
margin: 0px;
padding: 0px;
}
header {
font-family: Inconsolata;
font-size: 1.5rem;
font-style: normal;
font-weight: 700;
letter-spacing: -0.08em;
text-align: left;
}
header h2 {
margin: 1.25rem 0 0 1.25rem;
}
.container {
display: flex;
flex-direction: column;
max-width: 100%;
}
.scare-image {
width: auto;
height: 15rem;
margin: 3.75rem auto;
}
.page-not-found .first-p{
font-family: 'Space Mono', monospace;
font-size: 3rem;
font-style: normal;
font-weight: 700;
line-height: 4.438rem;
letter-spacing: -0.035em;
text-align: left;
margin: 3.125rem 0 0.5rem 1.5rem;
}
.second-p {
font-family: Space Mono;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 1.688rem;
letter-spacing: -0.035em;
text-align: left;
margin: 1.875rem 0 0.5rem 1.5rem;
}
a {
display: inline-block;
background: #000;
width: 10rem;
padding: 1rem;
margin: 3.75rem 0 0 1.5rem;
color: #fff;
font-family: Space Mono;
text-decoration: none;
font-weight: 400;
font-size: 14px;
text-align: center;
}
/*that was mobile first, now the desktop version */
@media (min-width: 600px) {
.container {
display: flex;
flex-direction: row;
width: 80%;
margin: auto;
justify-content: center;
box-sizing: border-box;
}
.scare-image {
width: 540px;
height: auto;
margin: 8rem auto;
}
.page-not-found .first-p{
text-align: left;
margin: 8rem 0 0.5rem 3rem;
}
.second-p {
margin: 1.875rem 0 0.5rem 3rem;
}
a {
margin: 3.75rem 0 0 3rem;
}
}