-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
113 lines (96 loc) · 1.71 KB
/
style.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
body {
background-color: rgb(19, 19, 19);
color: white;
}
.navbar {
width: 10%;
height: 100%;
}
.nav-item {
display: flex;
align-items: center;
}
.nav-icon {
width: 30px;
height: 30px;
}
.welcome {
margin-top: 4%;
margin-left: 7%;
font-family: 'Josefin Sans', sans-serif;
align-items: center;
/* text-align: center; */
font-size: larger;
}
.page-break hr {
margin-left: 7%;
/* margin-right: 20%; */
width: 100%;
border: 3px solid white;
}
.schedule {
margin-left: 16%;
align-items: center;
margin-top: 2%;
}
.day-looks {
margin: 4%;
text-align: center;
font-size: 20px;
align-items: center;
}
.day {
/* margin-left: 20%; */
width: 80%;
background-color: #202021;
/* border: 1px solid rgb(82, 172, 88); */
border-radius: 9px;
padding: 10px;
margin-top: 70px;
}
#meetings {
margin-top: 10px;
/* padding-left: 10px; */
margin-bottom: 10px;
border-radius: 10px;
color: antiquewhite;
/* background-color: #427d3e; */
align-items: center;
}
#meetings:nth-of-type(2n) {
background-color: #a65fbe;
}
#meetings:nth-of-type(2n-1) {
background-color: #7f3d95;
}
#meetings p {
padding-bottom: 0;
padding-left: 10px;
}
.clock {
/* padding-top: 100px; */
margin-left: 45%;
text-align: center;
padding-bottom: 0;
/* margin-top: 1%; */
width: fit-content;
font-size: 20px;
/* border: 1px dashed green; */
border-radius: 30px;
background-color: #202021;
padding: 20px;
}
#date {
font-size: 60px;
}
.date {
display: flex;
}
#month {
margin-top: 0;
}
#day {
margin-bottom: 0;
margin-top: 20px;
margin-left: 5px;
}