-
Notifications
You must be signed in to change notification settings - Fork 0
/
student.css
123 lines (104 loc) · 2.08 KB
/
student.css
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
/* CSS for Student Dashboard */
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
padding: 20px;
text-align: center;
align-items: center;
align-content: center;
}
.header {
text-align: center;
margin-bottom: 50px;
}
.header h1 {
font-size: 36px;
font-weight: bold;
color: #333;
}
.profile-section {
background-color: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0px 0px 10px #ccc;
margin-bottom: 50px;
}
.profile-section h2 {
font-size: 24px;
font-weight: bold;
color: #333;
margin-bottom: 20px;
}
.profile-section p {
font-size: 18px;
color: #555;
margin-bottom: 10px;
}
.qr-code {
width: 200px;
height: 200px;
margin: 0 auto;
display: block;
}
.attendance-section {
background-color: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0px 0px 10px #ccc;
margin-bottom: 50px;
}
.attendance-section h2 {
font-size: 24px;
font-weight: bold;
color: #333;
margin-bottom: 20px;
}
.attendance-section table {
width: 100%;
border-collapse: collapse;
}
.attendance-section th,
.attendance-section td {
border: 1px solid #ccc;
padding: 10px;
text-align: left;
}
.attendance-section th {
background-color: #f2f2f2;
}
.notes-section {
background-color: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0px 0px 10px #ccc;
margin-bottom: 50px;
}
.notes-section h2 {
font-size: 24px;
font-weight: bold;
color: #333;
margin-bottom: 20px;
}
.notes-section table {
width: 100%;
border-collapse: collapse;
}
.notes-section th,
.notes-section td {
border: 1px solid #ccc;
padding: 10px;
text-align: left;
}
.notes-section th {
background-color: #f2f2f2;
}
.timetable-section {
background-color: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0px 0px 10px #ccc;
}
.timetable-section h2 {
font-size: 24px;
font-weight: bold;
}