-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
175 lines (146 loc) · 2.6 KB
/
styles.css
File metadata and controls
175 lines (146 loc) · 2.6 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
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
/* Code written by MRUNAL PRADEEP PATIL (GO1476387) */
body {
margin: 0px;
font-family: Calibri, sans-serif;
background-color: #fafafa;
}
.maincontainer {
margin: 20px 100px 20px 100px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
transition: 0.3s;
padding: 20px;
}
.courserequirement {
color: black;
}
.courses {
color: #097984;
}
.coursetitle {
color: #097984;
}
.table {
width: 60%;
table-layout: fixed;
}
.link {
color: #c06792;
font-size: large;
}
footer {
background-color: #123b22;
color: white;
text-align: right;
padding: 20px;
margin-bottom: 10px;
}
footer a {
display: inline-block;
vertical-align: middle;
}
footer address {
display: inline-block;
vertical-align: middle;
margin-right: 20px;
}
.logo img {
vertical-align: middle;
width: 110px;
}
a.logo:hover {
display: inline-block;
vertical-align: middle;
background-color: gold;
}
.top {
margin-top: 10px;
}
h1 {
color: #ffcc33;
font-size: 30px;
text-shadow: 2px 2px 2px dimgrey;
border: none;
}
.padding {
padding-left: 10px;
}
h3 {
color: #006633;
}
.address {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
header {
background-color: #006633;
font-size: 25px;
font-weight: bold;
color: white;
text-align: left;
padding: 20px;
}
header a {
display: inline-block;
vertical-align: middle;
}
header span {
display: inline-block;
vertical-align: middle;
margin-right: 20px;
}
th {
border: 1px solid #ddd;
padding: 8px 4px;
text-align: left;
}
td {
border: 1px solid #ddd;
padding: 8px;
text-align: left;
}
th {
background-color: #f2f2f2;
}
th:first-child,
td:first-child {
width: 20%;
}
th:last-child,
td:last-child {
width: 80%;
}
.indexpage {
text-align: right;
}
.inputbox {
width: 50%;
padding: 4px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
margin-bottom: 2px;
}
.submitbutton {
background-color: #4caf50;
border: none;
color: white;
padding: 15px 25px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 15px;
margin: 2px 2px;
cursor: pointer;
}
.cancelbutton {
background-color: #f44336;
border: none;
color: white;
padding: 15px 25px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 15px;
margin: 2px 2px;
cursor: pointer;
}