-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path23_gradesheet.css
77 lines (65 loc) · 1.07 KB
/
23_gradesheet.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
body {
margin: 0;
padding: 0;
top: 0;
display: block;
font-size: medium;
}
.marksheet-container {
background-color: #fff;
padding: 0px;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
width: 100vw;
height: 135vh;
max-width:none;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
h1, h2 {
color: #333;
margin-bottom: 10px;
}
p {
font-size: 20px;
color: #1a1818;
margin: 5px 0;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}
table th, table td {
border: 1px solid #ddd;
padding: 10px;
text-align: center;
}
table th {
background-color: #f4f4f4;
}
table tr:nth-child(even) {
background-color: #deabab;
}
table tr:hover {
background-color: #f1f1f1;
}
.logo-container {
text-align: center;
margin-bottom: 20px;
}
.logo {
width: 120px;
height: 120px;
margin-top: 0;
}
h1{
text-align: center;
font-size: 30px;
margin-bottom: 0;
}
h2{
font-size: 20px;
}