-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
103 lines (90 loc) · 1.46 KB
/
Copy pathstyle.css
File metadata and controls
103 lines (90 loc) · 1.46 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
* {
margin: 0;
padding: 0;
font-family: sans-serif;
}
.header {
background-color: rgb(62, 86, 98);
color: white;
text-align: center;
padding: 2rem;
margin: 0 0 2rem 0;
display: flex;
}
.univ_name {
margin: 1rem;
text-align: center;
width: 90%;
}
.logo > img {
width: 100%;
height: auto;
}
.get_input_details,
.upload_marks,
.get_csv_file,
.get_session_form {
margin: 1rem auto 1rem auto;
height: fit-content;
width: 75%;
padding: 1rem;
border: 1px;
border-radius: 1px;
background-color: rgb(192, 206, 206);
display: block;
align-items: center;
}
.input_course_code,
.input_session {
padding: 1rem;
}
.submit_option,
.submit_marks_attendance,
.submit_ext_marks,
.btnn,
.submit_session,
.download_pdf {
background-color: rgb(72, 69, 69);
color: white;
padding: 1%;
margin: 1rem 40% 1rem 40%;
cursor: pointer;
}
/* buttons on home page */
.btnn {
font-size: 1.5em;
min-width: 50%;
margin: 1rem auto 1rem auto;
display: block;
}
/* colors of the links */
a {
text-decoration: none;
}
a:link > button {
color: white;
}
a:visited > button {
color: rgb(221, 250, 184);
}
a:hover > button {
color: yellow;
}
.course_details {
text-align: center;
margin: 1rem auto 1rem auto;
font-weight: bold;
background-color: rgb(192, 206, 206);
padding: 1rem 0 1rem 0;
}
.marks_table {
margin-left: auto;
margin-right: auto;
}
tr,
th,
td {
border: 1px solid black;
padding: 0.5rem;
text-align: center;
}