-
-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathbasicCal.css
More file actions
35 lines (33 loc) · 860 Bytes
/
basicCal.css
File metadata and controls
35 lines (33 loc) · 860 Bytes
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
:root {
--color: #525252;
}
#vp-wrapper #vp_calcBox input[type="text"]{
width: 100px;
}
#vp-wrapper #vp_calcPage .vp-calc-overlay {
display: grid;
width: 350px;
grid-template-rows: repeat(2, 45px);
grid-template-columns: repeat(7, 1fr);
grid-auto-rows: 45px;
padding: 5px;
background-color: var(--color);
border-radius: 5px;
margin-top: 3px;
}
#vp-wrapper #vp_calcPage input[type="button"] {
border-radius: 3px;
border: 0px;
margin: 1px;
/* box-shadow: 1px 1px 1px 1px var(--color); */
background-color: white;
color: var(--color);
font-size: 15px;
font-weight: bold;
}
#vp-wrapper #vp_calcPage .vp-calc-overlay input[type="button"]:hover,
#vp-wrapper #vp_calcPage .vp-calc-overlay input[type="button"].selected {
background-color: gray;
color: white;
transition: 0.5s
}