-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
121 lines (108 loc) · 2.12 KB
/
Copy pathstyle.css
File metadata and controls
121 lines (108 loc) · 2.12 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
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
body {
font-family: 'Comic Sans MS', cursive, sans-serif;
text-align: center;
background: linear-gradient(to right, #fff5e6, #e6faff);
color: #333;
padding: 20px;
}
h1 {
color: #ff1493;
font-size: 40px;
margin-bottom: 30px;
}
#story-builder {
display: flex;
justify-content: center;
gap: 30px;
margin: 30px auto;
flex-wrap: wrap;
}
.column {
display: flex;
flex-direction: column;
gap: 12px;
background-color: #fff;
border: 2px solid #ffc0cb;
padding: 20px;
border-radius: 20px;
box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
}
button {
padding: 10px;
font-size: 16px;
background-color: #ffd966;
border: 2px solid #ff9900;
border-radius: 10px;
transition: background-color 0.2s ease;
font-weight: bold;
cursor: pointer;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
min-height: 100px;
}
button:hover {
background-color: #ffe599;
}
button:focus {
outline: none;
}
button.selected {
background-color: #f4cccc;
border-color: #e06666;
color: #000;
}
.btn-img {
width: 50px;
height: 50px;
object-fit: contain;
margin-bottom: 5px;
}
#final-story {
font-weight: bold;
font-size: 24px;
margin-top: 30px;
color: #008000;
background-color: #f0fff0;
padding: 15px;
border-radius: 12px;
box-shadow: inset 0 0 10px #b6d7a8;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
#play-story {
margin-top: 25px;
padding: 12px 30px;
font-size: 20px;
background-color: #ffd966;
border: 2px solid #ff9900;
border-radius: 12px;
font-weight: bold;
cursor: pointer;
}
/* New Button Styles */
#number-buttons, #color-buttons {
margin-top: 30px;
display: flex;
justify-content: center;
gap: 15px;
}
.num-btn {
width: 50px;
height: 50px;
font-size: 20px;
border: 2px solid #999;
background-color: #fff;
border-radius: 50%;
font-weight: bold;
cursor: pointer;
}
.color-btn {
width: 40px;
height: 40px;
border-radius: 50%;
border: 2px solid #999;
cursor: pointer;
}