-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDaily School Routine.css
More file actions
150 lines (127 loc) · 2.69 KB
/
Daily School Routine.css
File metadata and controls
150 lines (127 loc) · 2.69 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
@font-face {
font-family: 'Super Playful';
src: url('SuperPlayful-e91WO.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
body {
font-family: 'Super Playful', sans-serif;
font-size: 18px;
color: #CCFF00;
line-height: 1.6;
padding-left: 1.25rem;
background-color: rgba(255, 255, 255, 0.8);
margin: 0;
padding: 10px; /* Add padding to ensure text does not touch the edges */
}
#background {
background-image: url('KarateCat.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
height: 100vh;
margin: 0;
padding: 20px; /* Ensure this padding is part of the existing #background section */
}
#emoji-title {
font-family: 'Super Playful', sans-serif;
font-size: 44px;
color: #FF5733;
line-height: 1.6;
text-decoration: underline;
}
section, #affirmations {
text-align: left;
margin-left: 0;
}
ul {
list-style-type: none;
padding-left: 0;
margin-left: 0;
}
li {
display: block;
padding: 5px 0;
}
span {
display: inline-block;
width: auto;
margin-right: 20px;
}
input[type="checkbox"] {
margin-right: 12px;
}
input[type="checkbox"]:checked + label {
text-decoration: line-through;
color: #999999;
}
input[type="checkbox"]:not(:checked) + label {
text-decoration: none;
color: initial;
}
@keyframes explode {
0% {
transform: scale(1);
opacity: 1;
}
50% {
transform: scale(2);
opacity: 0.5;
}
100% {
transform: scale(0);
opacity: 0;
}
}
li.clicked {
animation: explode 0.5s forwards;
color: #FF5733;
font-size: 28px;
text-shadow: 2px 2px 4px #FF5733;
}
li:hover {
color: #ff5733;
cursor: pointer;
}
label:hover {
color: #FF5733;
cursor: pointer;
}
li.exploding {
animation: explode 0.5s forwards;
}
@media (max-width: 768px) {
body {
font-size: 16px;
padding-left: 0.5rem;
background-color: rgba(255, 255, 255, 0.9);
}
#emoji-title {
font-size: 32px;
}
ul {
padding-left: 0;
margin-left: 0;
}
li {
padding: 5px 0;
}
span {
width: auto;
margin-right: 10px;
}
input[type="checkbox"] {
margin-right: 8px;
}
}
@media (max-width: 480px) {
body {
font-size: 14px;
padding-left: 0.25rem;
background-color: rgba(255, 255, 255, 0.95);
}
#emoji-title {
font-size: 28px;
}
}