Newer
Older
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
.course-item {
position: relative;
display: block;
width: 100%;
padding: 10px;
box-sizing: border-box;
border: solid 1px white;
background-color: white;
border-radius: 5px;
font-family: "Helvetica Neue", Georgia, Helvetica, Arial, sans-serif;
font-size: 14px;
margin-bottom: 10px;
transition: border-color .25s ease, box-shadow .25s ease;
cursor: pointer;
&:hover {
border-color: #0679A8;
box-shadow: 0 1px 5px 1px rgba(0, 0, 0, .25)
}
&.disabled {
background-color: #C7CACB;
border-color: #C7CACB;
cursor: default;
box-shadow: none;
.course-credits,
.course-number,
.course-title {
font-weight: bold;
}
}
p {
margin: 0;
padding: 0;
}
}
.course-row {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
}
.course-number,
.course-credits {
display: inline-block;
}
.course-info {
margin-bottom: 5px;
}
.course-number {
font-weight: bold;
font-size: 16px;
display: inline-block;
}
.material-icons {
font-size: 16px;
margin-left: 10px;
padding-top: 6px;
}
.icon-number-wrapper {
display: flex;
align-items: center;