forked from approachable-io/software-interview-prep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
85 lines (70 loc) · 1.14 KB
/
styles.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
body {
height: 100vh;
width: 70%;
margin: 5% auto 0;
font-family: sans-serif;
}
.text-container {
box-sizing: border-box;
padding: 0px 35px;
}
h1, h3{
margin-bottom: 0px;
}
h2{
margin-top: 0px;
}
p{
font-size: 18px;
}
img {
display: block;
max-width: 350px;
margin: 0 auto;
text-align: center;
}
.large-central-logo {
width: 100%;
}
.top-left-logo {
width: 40px;
}
@media only screen and (max-width: 760px) {
body{
width: 90%;
}
}
.hidden-answer input[type="checkbox"] {
display: none;
}
.hidden-answer label {
color: -webkit-link;
cursor: pointer;
display: block;
font-size: 1rem;
padding: .5rem 0;
text-decoration: underline
}
.content {
height: 0;
padding: 0 .5rem;
overflow: auto;
}
.hidden-answer input[type="checkbox"]:checked ~ label ~ .content {
height: auto;
min-height: 4rem;
}
/* For Page 404 */
.container_error {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.container_error h1{
margin-top: 0px;
font-size: 5em;
}
.sad_face{
width: 100px;
}