-
Notifications
You must be signed in to change notification settings - Fork 0
/
start.css
104 lines (92 loc) · 1.56 KB
/
start.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
104
html {
height: 100vh;
}
html, body {
overflow-x: hidden;
box-sizing: border-box;
}
body {
margin: 0%;
padding: 40px 80px 10px 80px;
font-family: 'Space Mono';
height: 100%;
}
:focus {
outline: 0;
}
.not-found {
font-family: Inconsolata;
font-style: normal;
font-weight: bold;
font-size: 24px;
}
.content-wrapper {
display: flex;
height: calc(100% - 50px);
justify-content: center;
align-items: center;
padding: 0px 110px;
}
img {
max-width: 80%;
height: auto;
}
.content {
width: 90%;
}
.heading {
font-weight: bold;
font-size: 45px;
margin-bottom: 20px;
line-height: 60px;
}
.description {
margin-bottom: 50px;
font-size: 17px;
width: 75%;
}
button {
border: none;
background-color: #333333;
color: #FFFFFF;
height: 50px;
width: 175px;
font-weight: 700;
font-size: 12px;
border-radius: 2px;
cursor: pointer;
}
.footer {
color: #BDBDBD;
text-align: center;
}
@media only screen and (max-width: 600px) {
body {
padding: 10px 10px 5px 10px;
}
.not-found {
font-size: 18px;
}
.content-wrapper {
flex-direction: column;
padding: 15px 10px 0px;
height: calc(100% - 50px);
}
.scarecrow {
padding-left: 15%;
}
.content {
padding: 5px 0px 0px 35px;
}
.heading {
font-size: 35px;
}
.description {
font-size: 15px;
width: 90%;
margin-bottom: 30px;
}
.footer {
font-size: 10px;
}
}