-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
59 lines (48 loc) · 721 Bytes
/
styles.css
File metadata and controls
59 lines (48 loc) · 721 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,html {
background-color: black;
color: red;
font-family: Helvetica, Arial, sans;
text-align: center;
}
h1 {
color: #BD0127;
}
img {
display: block;
border: 1px solid #BD0127;
width: 80%;
border-radius: 5px;
margin: 20px auto 20px auto;
}
.status {
max-width: 350px;
margin: 0 auto 0 auto;
}
.solution {
max-width: 350px;
margin: 0 auto 0 auto;
}
dl {
display: inline-block;
width: 25%;
border: 1px solid #BD0127;
border-radius: 5px;
text-align: center;
overflow: hidden;
margin: 10px;
}
.solution dl {
width: 85%;
}
dt, dd {
display: block;
padding-top: 5px;
padding-bottom: 5px;
}
dt {
background-color: #750118;
}
dd {
margin-inline-start: 0px;
font-weight: bold;
}