-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathQuarter.scss
80 lines (69 loc) · 1.34 KB
/
Quarter.scss
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
[data-theme='dark'] {
.quarter .quarter-header .quarter-title,
.quarter .quarter-add-course {
color: #eee;
}
.plus-icon {
fill: #eee;
}
.quarter-menu-btn:hover,
.quarter-menu-btn:focus,
.popover-body .quarter-menu-btn:active {
background-color: var(--overlay2);
}
}
.quarter {
background-color: var(--overlay1);
border-radius: 10px;
box-shadow: 0px 0px 4px var(--zot-blue);
flex: 1 1 30%;
height: fit-content;
margin: 0.75rem;
position: relative;
.quarter-header {
display: flex;
justify-content: space-between;
align-items: center;
.quarter-title {
color: #202e47;
font-weight: bold;
font-size: 20px;
padding: 1rem 0rem 0rem 2rem;
}
.quarter-edit-btn {
background: none;
border: none;
margin-top: 0.25rem;
margin-right: 1.25rem;
}
}
.quarter-units {
padding: 0rem 0rem 1rem 2rem;
color: #808080;
font-size: 16px;
}
.quarter-add-course {
color: #202e47;
font-size: 15px;
}
}
.quarter-menu-btn {
display: block;
width: 100%;
text-align: start;
border: 0px;
background: transparent;
padding: 0;
}
.quarter-menu-popover {
z-index: 1;
}
.plus-icon {
fill: #000000;
}
.red-menu-btn,
.red-menu-btn:hover,
.red-menu-btn:focus,
.popover-body .quarter-menu-btn.red-menu-btn:active {
color: red;
}