blob: 39a95ebfd2d09abeed19eedd112087076c3d1cd9 (
plain)
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
|
body {
.page {
div.login-wrapper {
display: flex;
align-items: center;
justify-content: center;
height: auto;
min-height: 1000px;
div.login {
text-align: center;
flex: 0 0 auto;
h1 {
color: #2636F9;
font-size: 3.5em;
font-weight: bold;
}
h2 {
margin: 30px 10px 0px 10px;
font-size: 2em;
font-weight: bold;
color: #333;
}
button.login {
margin-top: 30px;
color: #2636F9;
font-size: 1.3em;
background-color: white;
padding: 7px 35px;
border: 0px;
&:hover, &:active {
color: white;
background-color: #2636F9;
}
}
}
}
div.dates-wrapper {
div.dates {
h2 {
color: #2636F9;
font-size: 3.3em;
font-weight: bold;
text-align: center;
}
form {
div.month-row {
display: -webkit-flex;
display: flex;
-webkit-justify-content: center;
justify-content: center;
div.month-button {
-webkit-flex-grow: 1;
flex-grow: 1;
label.radio-inline {
text-align: center;
color: #333;
padding: 10px;
font-size: 1.2em;
width: 100%;
}
input[type="radio"] {
display: none;
&:checked + label.radio-inline {
color: #fff;
background-color: #4589F7;
border: 0px;
}
}
}
}
div.years {
margin-top: 20px;
text-align: center;
label.radio-inline {
color: #333;
padding: 9px;
font-size: 1.6em;
}
input[type="radio"] {
display: none;
&:checked + label.radio-inline {
color: #4589F7;
font-weight: bold;
}
}
}
}
}
}
}
}
|