-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.css
More file actions
96 lines (95 loc) · 1.98 KB
/
404.css
File metadata and controls
96 lines (95 loc) · 1.98 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
@import url("https://fonts.googleapis.com/css2?family=Fontdiner+Swanky&family=Roboto:wght@500&display=swap");
* {
box-sizing: 0;
margin: 0;
padding: 0;
cursor: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/4424790/cursors-edge.png"), auto;
}
body {
background: linear-gradient(to right, white 50%, #383838 50%);
font-family: "Roboto", sans-serif;
font-size: 18px;
font-weight: 500;
line-height: 1.5;
color: white;
}
div {
display: flex;
align-items: center;
height: 100vh;
max-width: 1000px;
width: calc(100% - 4rem);
margin: 0 auto;
}
div > * {
display: flex;
flex-flow: column;
align-items: center;
justify-content: center;
height: 100vh;
max-width: 500px;
width: 100%;
padding: 2.5rem;
}
aside {
background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/4424790/right-edges.png");
background-position: top right;
background-repeat: no-repeat;
background-size: 25px 100%;
}
aside img {
display: block;
height: auto;
width: 100%;
}
main {
text-align: center;
}
main h1 {
font-family: "Fontdiner Swanky", cursive;
font-size: 4rem;
color: #c5dc50;
margin-bottom: 1rem;
}
main p {
margin-bottom: 2.5rem;
}
main p em {
font-style: italic;
color: #c5dc50;
}
main button {
font-family: "Fontdiner Swanky", cursive;
font-size: 1rem;
color: #383838;
border: none;
background-color: #f36a6f;
padding: 1rem 2.5rem;
transform: skew(-5deg);
transition: all 0.1s ease;
cursor: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/4424790/cursors-eye.png"), auto;
}
main button:hover {
background-color: #c5dc50;
transform: scale(1.15);
}
@media (max-width: 700px) {
body {
background: #383838;
font-size: 16px;
}
div {
flex-flow: column;
}
div > * {
max-width: 700px;
height: 100%;
}
aside {
background-image: none;
background-color: white;
}
aside img {
max-width: 300px;
}
}