-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
90 lines (90 loc) · 1.48 KB
/
style.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
html,
body {
margin: 0;
padding: 0;
}
.deck,
.draw,
.back {
cursor: pointer;
}
.deck:hover {
text-decoration: underline;
}
.automa,
.main {
display: flex;
flex-direction: column;
min-height: 100vh;
width: 100vw;
}
.automa > *,
.main > * {
margin: 0.5em;
}
.automa .notes ul {
margin: 0;
}
.automa .controls {
display: flex;
justify-content: space-around;
justify-content: space-evenly;
}
.automa .back,
.automa .draw {
display: inline-flex;
border: 1px solid black;
border-radius: 0.5em;
box-shadow: 1px -1px 3px black;
height: 1.5em;
justify-content: center;
align-items: center;
padding: 0.15em;
background: gray;
color: white;
}
.automa .back:hover,
.automa .draw:hover {
box-shadow: 1px -2px 4px black;
background: gainsboro;
color: black;
}
#card {
margin: 0.5em;
border: 2px solid black;
border-radius: 1em;
flex-grow: 1;
display: flex;
flex-direction: column;
position: relative;
}
#card .card-section {
border: 1px solid black;
box-shadow: inset 1px 1px 3px black;
border-radius: 1em;
flex-grow: 1;
margin: 0.5em;
padding: 1em;
}
#card .card-number {
margin: 0.5em;
position: absolute;
background: white;
width: 1.4em;
height: 1.4em;
border: 1px solid black;
border-radius: 1em;
display: flex;
justify-content: center;
align-items: center;
bottom: -1em;
left: calc(50% - 0.7em);
}
#card .card-section-blurb {
}
#card .card-section-title {
}
#card .card-section-description {
}
#card .card-section-actions {
}