-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
82 lines (70 loc) · 1.08 KB
/
main.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
a {
text-decoration: none;
color: inherit;
}
a:hover {
color: #61DBFC;
}
body {
background-color: #222222;
font-family: 'Helvetica Neue';
font-weight: lighter;
font-size: 18px;
}
.imgWrap {
text-align: center;
height: 250px;
}
.imgWrap img {
width: 200px;
margin-top: 50px;
}
.dayWrap {
text-align: center;
margin-top: 100px;
}
.dayRow {
border: 1px solid #C4C4C4;
border-radius: 5px;
padding-left: 4px;
display: inline-block;
}
.day {
width: 40px;
padding: 5px 0px;
display: inline-block;
text-align: center;
color: #C4C4C4;
letter-spacing: 2px;
border-right: 1px solid #C4C4C4;
position: relative;
}
.day:hover {
z-index: 5;
}
.day:last-child {
border-right: none;
}
.preview {
height: 300px;
padding: 5px;
background-color: #F4F4F4;
border-radius: 5px;
position: absolute;
top: -3800px;
left: -228px;
}
.preview:before {
content: '';
width: 0px;
height: 0px;
border-style: solid;
border-width: 0px 9px 10px 9px;
border-color: transparent transparent #F4F4F4 transparent;
position: absolute;
top: -10px;
left: 238px;
}
.day:hover .preview {
top: 45px;
}