-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle_cal.css
78 lines (74 loc) · 1.24 KB
/
style_cal.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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
#Schedule>h1{
margin: .5rem;
}
#Schedule>label{
margin: 0.5rem;
font-size: 1.2rem;
}
#Schedule>select{
height: 4vh;
width: 6rem;
}
.Subjects>li{
width: 60%;
height: 2.5%;
background-color: bisque;
margin: .5rem;
display: flex;
align-items: center;
justify-content: space-between;
padding: .5rem;
}
.subject{
font-size: 1.5rem;
}
.time-and-date{
font-size: 1.2rem;
}
#exams{
margin-top: 2rem;
}
#exams>h1{
margin: 0.5rem;
}
#Calendar{
border: 1px solid rgb(0, 0, 0);
width: 20rem;
height: 10%;
border-radius: 5%;
padding: .5rem;
margin-left: .5rem;
}
.title{
height: 1rem;
display: flex;
justify-content: space-between;
align-items: center;
margin-right: 1rem;
}
.title>p{
font-weight: bold;
font-size: 1.2rem;
}
.day-date>ul{
display: flex;
list-style-type: none;
margin-top: .5rem;
justify-content: space-between;
flex-wrap: wrap;
}
.day-date>ul>li{
width: calc(100%/7);
}
#days>li:hover{
border: 1px solid black;
border-radius: 10%;
}
#inactive{
opacity: .5;
}