-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
74 lines (62 loc) · 1.11 KB
/
style.css
File metadata and controls
74 lines (62 loc) · 1.11 KB
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
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
* {
margin: 0;
padding: 0;
}
body {
background-color: #f5f5f5;
font-family: "Noto Sans", sans-serif;
font-optical-sizing: auto;
font-weight: 500;
font-style: normal;
padding: 1rem;
max-width: 1024px;
margin: auto;
}
h1 {
padding-block: 8px;
font-size: 64px;
}
h2 {
padding-block: 12px;
font-size: 32px;
}
button {
padding: 0.5rem 1rem;
font-size: 16px;
}
.word {
display: flex;
flex-wrap: wrap;
gap: 0.25rem;
padding: 0.25rem 0rem;
flex: 1;
justify-content: space-between;
}
.word p {
font-size: 24px;
}
.settings {
display: flex;
flex-direction: column;
gap: 1rem;
font-size: 18px;
}
.btn_generate {
font-size: 24px;
}
.limits {
display: flex;
flex-wrap: wrap;
gap: 2rem;
}
.max_syl, .max_wrd, .strategy_body, .include_body {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 0.5rem;
}
.strategy_body, .include_body {
margin-top: 4px;
justify-content: start;
}