forked from CodeYourFuture/Module-Data-Groups
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (53 loc) · 1.02 KB
/
style.css
File metadata and controls
64 lines (53 loc) · 1.02 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
/** Write your CSS in here **/
body {
margin: 0;
padding: 0;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: linear-gradient(135deg, #e0f7ff, #c8f7dc);
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
sans-serif;
}
.quote-app {
background: #ffffff;
padding: 2rem 2.5rem;
border-radius: 12px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
max-width: 600px;
width: 90%;
text-align: center;
}
label {
display: inline-flex;
align-items: center;
gap: 0.5rem;
margin-top: 1rem;
}
.auto-play-controls {
display: flex;
align-items: center;
justify-content: center;
gap: 1rem;
margin-top: 1rem;
}
#auto-play-toggle {
width: 20px;
height: 20px;
cursor: pointer;
accent-color: #16a34a;
}
#auto-play-status {
margin-top: 0;
font-size: 0.9rem;
padding: 0.25rem 0.5rem;
border-radius: 999px;
display: inline-block;
}
.auto-play-label {
display: inline-flex;
align-items: center;
gap: 0.4rem;
margin: 0;
}