-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
78 lines (67 loc) · 1.25 KB
/
style.css
File metadata and controls
78 lines (67 loc) · 1.25 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
/* style.css */
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: #f4f6f8;
color: #333;
margin: 0;
padding: 20px;
}
header {
text-align: center;
margin-bottom: 20px;
}
h1 {
color: #007BFF;
}
#add-class form {
display: flex;
gap: 10px;
flex-wrap: wrap;
justify-content: center;
margin-bottom: 30px;
}
#add-class input, #add-class button {
padding: 10px;
font-size: 1rem;
border: 1px solid #ccc;
border-radius: 4px;
}
#add-class button {
background-color: #007BFF;
color: white;
border: none;
cursor: pointer;
transition: background-color 0.25s ease;
}
#add-class button:hover {
background-color: #0056b3;
}
#class-list {
max-width: 700px;
margin: 0 auto;
}
.class-item {
background-color: white;
padding: 15px;
border-left: 8px solid;
margin-bottom: 10px;
box-shadow: 0 1px 4px rgba(0,0,0,0.1);
display: flex;
justify-content: space-between;
align-items: center;
}
.class-info {
flex-grow: 1;
}
.delete-btn {
background: #dc3545;
border: none;
color: white;
padding: 6px 12px;
cursor: pointer;
border-radius: 3px;
font-size: 0.9rem;
}
.delete-btn:hover {
background: #b02a37;
}