-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.scss
More file actions
37 lines (30 loc) · 774 Bytes
/
index.scss
File metadata and controls
37 lines (30 loc) · 774 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
@import url(https://fonts.googleapis.com/css2?family=Fira+Sans&display=swap);
@import url(https://cdn.jsdelivr.net/npm/@shoelace-style/shoelace@2.0.0-beta.72/dist/themes/light.css);
#main {
width: 100%;
box-sizing: border-box;
text-align: center;
font-family: 'Fira Sans', sans-serif;
}
#buttons {
width: 100%;
max-width: 30rem;
box-sizing: border-box;
margin: auto;
display: flex;
flex-wrap: wrap;
justify-content: center;
& > sl-button{
flex-basis: 30%;
margin: var(--sl-spacing-3x-small);
min-width: var(--sl-spacing-4x-large);
touch-action: manipulation;
}
}
.copyright {
padding-top: 10px;
display: block;
text-align: center;
color: #bbb;
cursor: pointer;
}