-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
94 lines (81 loc) · 1.41 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
91
92
93
94
:root {
--grid-cols: 1;
--grid-rows: 1;
}
@font-face {
font-family: etch;
src: url(EASTRIAL.ttf);
}
body {
background-color: #dfdddd;
}
main {
display: flex;
align-items: center;
justify-content: flex-start;
gap: 100px;
max-width: 1100px;
margin: 0 auto;
}
#toolbar {
display: flex;
flex-direction: column;
row-gap: 10px;
}
#grid {
background-color: white;
height: 600px;
width: 600px;
display: grid;
grid-gap: 0em;
grid-template-rows: repeat(var(--grid-rows), 1fr);
grid-template-columns: repeat(var(--grid-cols), 1fr);
box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
}
.grid-item {
text-align: center;
aspect-ratio: 1;
}
.grid-lines {
border: 1px solid gray;
}
.no-grid-lines {
border: none;
}
#title {
display: flex;
justify-content: center;
font-size: 36px;
padding-bottom: 10px;
font-family: etch;
}
.toolbar-child {
font-family: Papyrus;
font-weight: bold;
}
.button {
font-family: "Open Sans", sans-serif;
font-size: 16px;
letter-spacing: 2px;
text-decoration: none;
text-transform: uppercase;
color: #000;
cursor: pointer;
border: 3px solid;
padding: 0.25em 0.5em;
position: relative;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
margin-bottom: 10px;
}
.button:active {
box-shadow: 0px 0px 0px 0px;
top: 5px;
left: 5px;
}
@media (min-width: 768px) {
.button {
padding: 0.25em 0.75em;
}
}