-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
129 lines (111 loc) · 2.2 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
* {
font-family: 'Zilla Slab';
font-weight: 300;
font-size: 14px;
}
a {
color: #fff;
text-decoration-skip: ink;
}
#dob {
font-family: "SF Mono", "Monaco", "Inconsolata", "Fira Mono", "Droid Sans Mono", "Source Code Pro", monospace;
color: #fff;
}
body {
height: 100vh;
background: #222;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: #fff;
opacity: 0;
transition: opacity 300ms;
}
.title {
position: absolute;
top: 0;
left: 20px;
}
.title tspan {
font-size: 42px;
}
.description {
font-size: 16px;
margin-top: 60px;
}
ul.weeks {
list-style: none;
display: flex;
flex-wrap: wrap;
width: 1000px;
padding: 0;
margin: 0;
}
li.week {
border: 1px solid #666;
height: 4px;
width: 4px;
margin: 2px 5px 2px 0;
border-radius: 50%;
position: relative;
}
li.week:hover .yearToolTip {
opacity: 1;
}
.yearToolTip {
position: absolute;
top: -32px;
left: -24px;
font-size: 14px;
z-index: 1;
opacity: 0;
transition: opacity 300ms;
background: #444;
border-radius: 5px;
border: 2px solid #666;
padding: 5px 10px;
}
::-webkit-datetime-edit {}
::-webkit-datetime-edit-fields-wrapper { background: #222; }
::-webkit-datetime-edit-text { color: #fff; padding: 0 0.3em; }
::-webkit-datetime-edit-month-field { color: #fff; }
::-webkit-datetime-edit-day-field { color: #fff; }
::-webkit-datetime-edit-year-field { color: #fff; }
::-webkit-inner-spin-button { display: none; }
::-webkit-clear-button { display: none; }
::-webkit-calendar-picker-indicator { background: #222; color: #666; opacity: 1; }
.dobInputGroup {
/* font-size: 14px; */
display: flex;
flex-direction: column;
position: absolute;
top: 0px;
right: 0px;
padding: 10px;
border-left: 2px solid #666;
border-bottom: 2px solid #666;
border-bottom-left-radius: 3px;
}
.dobInputGroup label {
margin-top: 0;
}
.dobInputGroup input {
font-size: 12px;
border: none;
padding-bottom: 1px;
background: #222;
outline: none;
width: 110px;
}
li.active {
background-color: #fff;
border: 1px solid #fff !important;
}
.hidden {
display: none;
}
.newYear.active {
background: #00BBFF;
border: 1px solid #00BBFF !important;
}