blob: 83e900641125a4af11d9194eecb92eb4cb99a57f (
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
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
129
130
131
132
133
134
|
body {
.page {
div.login-wrapper {
display: flex;
align-items: center;
justify-content: center;
height: auto;
min-height: 1000px;
max-width: 700px;
margin: 0 auto;
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;
}
}
}
}
}
}
div.photos-wrapper {
h4 {
color: #2636F9;
font-size: 1em;
text-align: center;
margin-bottom: 0px;
}
h2 {
margin-top: 0px;
color: #2636F9;
font-size: 2.3em;
font-weight: bold;
text-align: center;
}
div.photos {
display: -webkit-flex;
display: flex;
-webkit-justify-content: center;
justify-content: center;
-webkit-flex-wrap: wrap;
flex-wrap: wrap;
div.photo {
margin: 3px 8px;
width: 54px;
height: 74px;
div.title {
color: #333;
font-size: 0.7em;
text-align: center;
}
img {
height: 54px;
width: 54px;
}
canvas {
width: 54px;
height: 54px;
}
}
}
}
}
}
|