-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathstyle.css
More file actions
119 lines (108 loc) · 2.2 KB
/
Copy pathstyle.css
File metadata and controls
119 lines (108 loc) · 2.2 KB
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
@import url('https://fonts.googleapis.com/css?family=Staatliches&display=swap');
@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');
#container {
width: 100%;
margin: auto;
height: 1800px;
}
#calendar {
width: 47%;
height: 100%;
float: left;
margin-left: 5px;
border: 1px solid rgba(75,181,243,0.5);
background-color: rgba(21,116,171,0.12);
box-shadow: 0px 0px 10px 5px rgba(217,231,241,0.2) inset;
border-radius: 20px;
overflow: hidden;
}
#subjects {
width: 47%;
height: 100%;
margin-left: 20px;
float: left;
background-color: rgba(21,16,71,0.12);
box-shadow: 0px 0px 10px 5px rgba(217,231,241,0.2) inset;
border-radius: 20px;
overflow: scroll;
}
#clear {
clear: both;
}
#schedule{
width: 80%;
height: 17%;
float: left;
background-color: rgba(21,16,71,0.12);
box-shadow: 0px 0px 10px 5px rgba(217,231,241,0.2) inset;
border-radius: 20px;
overflow: hidden;
}
div.tooltip {
position: absolute;
text-align: center;
width: 300px;
height: xx;
padding: 2px;
font: 12px sans-serif;
background: lightsteelblue;
border: 0px;
border-radius: 8px;
pointer-events: none;
}
body {
background-image: url("images/bg.jpg");
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
font-family: 'Montserrat', sans-serif;
}
#main {
height: 1%;
overflow: hidden;
padding: 1em;
margin: 0px auto;
max-width: 1000px;
background-color: rgba(255,250,240,0.8);
border-radius: 30px;
}
.button-style-1 {
background-color: #CD853F;
border: none;
border-radius: 10px;
color: white;
padding: 15px 20px;
text-align: center;
display: inline-block;
}
.button-style-1:hover {
background-color: #DEB887;
color: white;
cursor: pointer;
}
.button-style-2 {
background-color: #CD853F;
border: none;
border-radius: 10px;
color: white;
padding: 5px 10px;
text-align: center;
}
.button-style-2:hover {
background-color: #DEB887;
color: white;
cursor: pointer;
}
.custom-select {
width: 200px;
border-radius: 10px;
display: inline-block;
}
.custom-select select {
border: none;
color: black;
font-weight: bold;
padding: 5px 10px;
background: snow;
border-radius: 10px;
}