-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.css
More file actions
52 lines (43 loc) · 784 Bytes
/
404.css
File metadata and controls
52 lines (43 loc) · 784 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
body {
background: rgb(241, 241, 241);
overflow-x: hidden;
}
* {
font-family: Arial, Helvetica, sans-serif;
/* font-weight: bold; */
}
/* Description header */
desc_header {
font-weight: bold;
}
/* Actual description */
description {
font-weight: 300;
}
#main {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
.container {
border-radius: 10px;
box-shadow: 0 0 10px rgb(175, 175, 175);
width: 90vw;
height: max-content;
padding: 20px;
}
.title {
font-size: 2.5vw;
margin:0;
margin-top: 5px;
}
.desc_title {
font-size: 1.4vw;
margin:0;
margin-top: 7px;
}
.desc {
font-size: 1vw;
font-weight: 300;
}