-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.css
More file actions
124 lines (107 loc) · 1.67 KB
/
404.css
File metadata and controls
124 lines (107 loc) · 1.67 KB
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
body{
padding: none;
margin: 0;
background-color: black;
color: white;
font-family: police1;
}
@font-face{
font-family: police1;
src: url('polices/police1.otf');
}
#navbar{
display: flex;
justify-content: space-evenly;
background-color: white;
}
#navbar a{
color: black;
text-decoration: none;
}
#navbar a:hover{
color: gray;
}
#first_of_all{
text-align: center;
margin-top: 1%;
}
.middle_content{
margin: 0 auto;
width: 20%;
height: 20%;
border-radius: 10px;
border: solid 2px black;
box-shadow: 10px 10px 10px black;
padding: 1%;
}
.middle_content:hover{
padding: 3%;
transition: 1s;
background-color: red;
}
.middle_content:hover .redirect{
opacity: 0;
transition: 1s;
}
.middle_content:hover .diable img{
transition: 2s;
opacity: 1;
}
.middle_content:hover h3{
transition: 1s;
opacity: 0;
}
.middle_content:hover .go_away{
opacity: 1;
transition: 1s;
}
.middle_content:hover .redirect{
display: hidden;
transition: 1s;
}
.go_away{
opacity: 0;
color: white;
}
.diable img{
width: 40%;
opacity: 0;
}
#last_content{
background-color: white;
position: absolute;
display: flex;
flex-direction: column;
bottom: 0;
width: 100%;
align-items: center;
padding: 2vh 0;
}
.link{
width: 30vw;
}
.link ul{
display: flex;
flex-direction: row;
justify-content: space-between;
list-style: none;
margin-right: 10%;
}
.link a{
text-decoration: none;
color: black;
}
.link a:hover{
color: gray;
}
.network{
display: flex;
width: 12vw;
}
.network img{
max-width: 80%;
border-radius: 10px;
}
.network img:hover{
opacity: 0.8;
}