-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.css
More file actions
60 lines (49 loc) · 934 Bytes
/
404.css
File metadata and controls
60 lines (49 loc) · 934 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
body {
font-family: Verdana, sans-serif;
overflow-y: hidden;
}
.not_found_left{
position: absolute;
left: 5%;
top: 10%;
width: 40%;
}
.not_found_left #text{
margin-bottom: 100px;
}
.not_found_left #return_home{
margin-top: 500px;
text-decoration: none;
color: black;
background-color: #E4A8CA; /* Mizuki */
padding: 11px 13px;
border-radius: 7px;
font-size: 25px;
}
.not_found_left #return_home:hover{
background-color: #884499; /* Unit colour */
}
#return_home {
border: solid 2px black;
transition: all 0.25s;
}
.not_found_right{
position: absolute;
right: 5%;
top: 5%;
width: 40%;
height: 100vh;
}
.not_found_right #subtext{
color:black;
padding: none;
font-size: 15px;
text-decoration: none;
}
.not_found_right #image{
width: 100%;
height: auto;
object-fit: contain;
max-height: 85%;
left: 0;
}