-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
1.css
69 lines (58 loc) · 903 Bytes
/
1.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
#actions {
font-family: sans-serif;
list-style-type: none;
padding: 0;
}
#actions > li {
padding-top: 1em;
}
#actions > li > a {
text-decoration: none;
}
.card {
border-color: orange;
border-radius: 5%;
border-style: solid;
border-width: 4px;
margin: 1em;
overflow: hidden;
}
.card > img,
img.card {
height: 370px;
width: 265px;
}
.dfc {
display: inline-flex;
flex-direction: row;
}
#drawing {
display: none;
}
#drawing > div {
align-items: center;
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
}
#drawing img {
cursor: pointer;
}
#error-banner {
background-color: red;
box-sizing: border-box;
display: none;
padding: 1em;
word-break: break-all;
}
#error-banner > h2 {
font-family: sans-serif;
font-size: 2em;
font-weight: bold;
margin: 0;
}
h1 {
font-family: sans-serif;
text-align: center;
}