-
Notifications
You must be signed in to change notification settings - Fork 0
/
edge.css
128 lines (108 loc) · 1.89 KB
/
edge.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
124
125
126
127
128
body,
html {
padding: 0;
margin: 0;
height: 100%;
width: 100%;
background-color: #ffffff;
color: #000000;
font-family: 'Arial', sans-serif;
font-size: 16px;
line-height: 1.5;
}
#top-section {
margin: 0 0;
background-color: #007BFF;
}
.top-div {
text-align: center;
}
#top-h1 {
color: #ffffff;
font-size: 2.5em;
margin: 0;
}
.top-nav ul {
list-style-type: none;
padding: 0;
display: flex;
justify-content: space-between;
background-color: #000000;
text-align: center;
text-decoration: underline;
}
.top-nav a {
display: block;
padding: 10px 20px;
color: #ffffff;
text-decoration: none;
font-size: 1.2em;
}
.top-nav a:hover {
background-color: #0056b3;
}
#nav-active a {
background-color: #00ff4c;
color: #000000;
}
/* announcement section */
#ann-section{
font-size: 1.5rem;
padding: 5px;
text-align: justify;
}
#ann-section ul{
list-style: square;
}
/* table section */
#table-section {
margin: 20px 20px;
padding: 20px;
background-color: #ffffff;
border-radius: 8px;
}
#table-section h1 {
text-align: center;
color: #333333;
font-size: 2em;
}
#course-table {
width: 100%;
}
#course-table th,
#course-table td {
padding: 12px 15px;
}
#course-table th {
background-color: #007BFF;
color: #ffffff;
font-weight: bold;
}
#course-table tr:nth-child(even) {
background-color: #f2f2f2;
}
/* apply section */
#apply-section {
background-color:#00ff4c;
display: grid;
place-items: center;
}
#applyh2 {
font-weight: bold;
text-align: center;
}
#apply-div {
background-color: #3700ff8f;
padding: 10px 170px;
border-radius: 8px;
box-shadow:2px 2px 2px #000000;
}
#apply-lebel {
font-weight: bold;
}
#apply-input {
height: 100%;
width: 100%;
padding: 10px 10px;
border-radius: 5px;
}