-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
73 lines (62 loc) · 1009 Bytes
/
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
body, html {
padding: 0;
margin: 0;
}
#inputDate {
margin: 0vh auto;
font-size: 4vh;
display: block;
height: 8vh;
text-align: center;
}
#bellGrid {
position: absolute;
bottom: 0;
}
.bellWrapper {
position: relative;
cursor: pointer;
}
.bellWrapper:hover .hoverbar {
background-color: rgba(255, 255, 255, 0.0);
}
.bellWrapper:after {
content: "";
display: table;
clear: both;
}
.bellBlock {
width: 10vw;
height: 8vh;
box-sizing: border-box;
border-bottom: 1px solid #BBB;
background-color: red;
float: left;
}
.cover, .hoverbar {
width: 100%;
height: 100%;
background-color: rgba(255, 255, 255, 0.7);
position: absolute;
}
.hoverbar {
background-color: rgba(255, 255, 255, 0.3);
}
.rowDate {
position: absolute;
line-height: 8vh;
padding-left: 5px;
font-family: 'Courier';
font-size: 1.3vw;
}
.mainRowDate {
font-size: 1.8vw;
}
.invalidDate {
width: 100vw;
text-align: center;
font-size: 4vh;
padding: 41vh 0vw;
background-color: #eee;
font-family: 'Courier'
}