-
Notifications
You must be signed in to change notification settings - Fork 0
/
course_timetable.css
127 lines (107 loc) · 2.37 KB
/
course_timetable.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
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed&family=Cabin&family=Changa+One&family=Comfortaa:wght@500&family=Delicious+Handrawn&family=EB+Garamond&family=Lilita+One&family=Patua+One&family=Secular+One&family=Shadows+Into+Light+Two&family=Unna&display=swap');
body{
font-size: 120%;
background-color: rgb(255, 255, 255); /*Floral Colour*/
}
.navbar{
font-family: 'Shadows Into Light Two', cursive;
display: block;
text-align: center;
margin-top: 1%;
/*background: url("https://images.creativemarket.com/0.1.0/ps/1570278/2417/1608/m1/fpnw/wm1/preview-01-.jpg?1471583801&s=5d51c2a276fa9b425b13bd7fba07f894") 10px;*/
}
.navbar a{
background-color: rgb(255,166,43);
color: rgb(255, 255, 255);
padding: 5px;
border: 1px solid black;
text-decoration: none;
}
.selection-form{
border: 3px solid black;
border-radius: 25px;
height: 42vh;
float: right;
margin-top: 4%;
margin-right: 2%;
padding: 2% 2% 2% 2%;
}
.selection-form label{
font-size: 80%;
}
.schedule{
font-size: 120%;
font-family: 'Lilita One', cursive;
border: 3px solid rgb(0, 0, 0);
border-radius: 5px;
/* height: 50vh; */
margin-top: 2%;
margin-left: 3%;
margin-right: 3%;
}
table{
border: 1.5px solid black;
text-align: center;
border-radius: 5px;
}
table th{
border: 1.5px solid black;
padding: 2px 2px 2px 2px;
}
table td{
font-size: 70%;
color: rgb(0, 0, 0);
border: 1.5px solid black;
border-radius: 5px;
padding: 1% 1% 1% 1%;
}
.day{
color: black;
}
.links{
/* float: right; */
margin-right: 5vw;
margin-top: 2%;
margin-left: 3%;
font-size: 90%;
font-family: 'Lilita One', cursive;
color: orange;
}
.links a{
text-decoration: none;
color: "#1c0770";
font-family: 'Lilita One', cursive;
}
.links a:hover{
color: green;
}
.assignments{
margin-top: 2%;
margin-left: 3%;
font-size: 90%;
font-family: 'Lilita One', cursive;
color: orange;
}
.assignments a{
text-decoration: none;
color: "#1c0770";
font-family: 'Lilita One', cursive;
}
/* .assignments ul ul li a{
text-decoration: none;
} */
.assignments a:hover{
color: green;
}
.assignments li span{
color: green;
}
#choose_courses{
color: orange;
font-family: 'Lilita One', cursive;
margin-left: 3%;
}
#course_list{
font-family: 'Lilita One', cursive;
margin-left: 3%;
}