-
Notifications
You must be signed in to change notification settings - Fork 0
/
quarto.css
134 lines (119 loc) · 2.2 KB
/
quarto.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
html {
box-sizing: border-box;
background-color: black;
color: white;
font-family: "Tahoma", "Arial", sans-serif;
}
header {
font-family: "Times New Roman", serif;
}
header, footer {
display: flex;
flex-flow: column nowrap;
align-items: center;
}
a:active {
color: inherit;
}
a:visited {
color: inherit;
}
.game, .bannerspot {
margin: 0 auto;
width: 90%;
display: flex;
flex-flow: row wrap;
justify-content: center;
align-items: stretch;
}
.banner {
width: 100%;
background-color: lightgreen;
margin-bottom: 1em;
padding: 0.75em;
text-align: center;
font-weight: bold;
color: black;
}
.gameboard {
box-sizing: content-box;
width: 280px;
height: 280px;
background-color: white;
margin-right: 25px;
padding: 1em;
border: 4px solid orchid;
border-radius: 1em;
display: flex;
flex-flow: row wrap;
}
.piece {
width: 40px;
margin: 2px 2px 2px 2px;
}
.boardspot {
width: 25%;
height: 25%;
box-sizing: border-box;
border: 2px solid black;
display: flex;
align-items: flex-end;
justify-content: center;
}
.gamepieces {
display: flex;
flex-flow: column;
justify-content: space-between;
}
#activespot {
background-color: white;
width: 100%;
height: 100%;
box-sizing: border-box;
border: 2px solid black;
border-radius: 0.5em;
display: flex;
justify-content: center;
align-items: flex-end;
}
.active {
box-sizing: content-box;
background-color: white;
width: 75px;
height: 75px;
padding: 0.5em;
border: 4px solid orchid;
border-radius: 1em;
}
.inactive {
box-sizing: border-box;
background-color: white;
width: 300px;
padding: 10px;
display: flex;
flex-flow: row wrap;
justify-content: space-around;
align-items: baseline;
}
@media only screen and (max-width: 768px) {
.game {
margin: 0 auto;
width: 90%;
display: flex;
flex-flow: column wrap;
align-items: center;
}
.gameboard {
margin-right: 0;
margin-bottom: 25px;
}
.gamepieces {
flex-flow: row;
}
.active {
margin-right: 20px;
}
.inactive {
width: 200px;
}
}