-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage_1.css
More file actions
131 lines (116 loc) · 2.56 KB
/
page_1.css
File metadata and controls
131 lines (116 loc) · 2.56 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
/* Page 1 Styles */
body {
background-image: url("school_background.png");
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.page-1-container {
background-color: white;
border-radius: 12px;
padding: 40px 30px;
width: 650px;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
display: flex;
flex-direction: column;
align-items: center;
}
.page-1-container h1 {
font-size: 40px;
color: rgb(10, 10, 10);
}
#student_names {
width: 600px;
height: 150px;
resize: none;
overflow-wrap: break-word;
white-space: pre-wrap;
border: 1px solid #ccc;
border-radius: 4px;
padding: 10px;
font-family: inherit;
font-size: inherit;
}
#student_count {
width: 600px;
height: 50px;
border: 1px solid #ccc;
border-radius: 4px;
padding: 10px;
font-family: inherit;
font-size: 18px;
}
.student-count-label {
display: none;
font-size: 16px;
color: rgb(10, 10, 10);
margin-bottom: 10px;
margin-top: 10px;
}
/* Custom Checkbox Styling */
.checkbox-container {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
margin: 10px 0;
}
.checkbox-container input[type="checkbox"] {
appearance: none;
-webkit-appearance: none;
width: 24px;
height: 24px;
border: 2px solid rgb(15, 177, 177);
border-radius: 6px;
cursor: pointer;
position: relative;
transition: all 0.3s ease;
background-color: white;
}
.checkbox-container input[type="checkbox"]:hover {
border-color: #12AFAF;
box-shadow: 0 0 8px rgba(15, 177, 177, 0.3);
}
.checkbox-container input[type="checkbox"]:checked {
background-color: rgb(15, 177, 177);
border-color: rgb(15, 177, 177);
}
.checkbox-container input[type="checkbox"]:checked::after {
content: "✓";
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
font-size: 18px;
font-weight: bold;
}
.checkbox-container label {
font-size: 18px;
color: rgb(10, 10, 10);
cursor: pointer;
user-select: none;
}
.create-button {
border-radius: 12px;
border: none;
padding: 15px 50px;
font-size: 20px;
background-color: rgb(15, 177, 177);
color: white;
cursor: pointer;
transition: background-color 0.3s, transform 0.2s;
}
.create-button:hover {
background-color: #12AFAF;
transform: scale(1.05);
}
.clickable-text {
color: black;
cursor: pointer;
text-decoration: underline;
font-size: 18px;
}