-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
142 lines (125 loc) · 3.28 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
*,
*:before,
*:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
}
body,
html {
margin: 0;
padding: 0;
height: 100%;
}
body {
-moz-osx-font-smoothing: grayscale;
-webkit-align-items: center;
-webkit-flex-direction: column;
-webkit-font-smoothing: antialiased;
-webkit-justify-content: center;
background-color: black;
}
body, input {
display: -webkit-flex;
font-family: 'Avenir', 'helvetica neue', helvetica, arial, sans-serif;
}
.age-label {
background: linear-gradient(90deg, rgba(179,0,255,1) 5%, rgba(231,0,255,1) 50%, rgba(255,0,254,1)90%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-size: 1.2rem;
line-height: 1;
}
#cite {
color: #cfc5c5;
font-size: 1.2rem;
line-height: 1;
margin: 0 0 0 2px;
position: fixed;
bottom: 0;
}
#cite a {
background: linear-gradient(90deg, rgba(179,0,255,1) 5%, rgba(231,0,255,1) 50%, rgba(255,0,254,1) 95%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-decoration: none;
}
#cite a:visited {
background: linear-gradient(-90deg, rgba(179,0,255,1) 5%, rgba(231,0,255,1) 50%, rgba(255,0,254,1) 95%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
#cite a:hover {
background: linear-gradient(-90deg, rgba(179,0,255,1) 5%, rgba(231,0,255,1) 50%, rgba(255,0,254,1) 95%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
#cite a:active {
background: linear-gradient(-90deg, rgba(179,0,255,1) 5%, rgba(231,0,255,1) 50%, rgba(255,0,254,1) 95%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.count {
background: linear-gradient(90deg, rgba(179,0,255,1) 5%, rgba(231,0,255,1) 50%, rgba(255,0,254,1) 95%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin: 0;
font-size: 6rem;
line-height: 1;
font-weight: 600;
}
.count sup {
font-size: 2.4rem;
margin-left: 7px;
}
label {
display: block;
}
input, button {
padding: 0.375rem 0.75rem;
font-size: 1.5rem;
appearance: none;
-webkit-appearance: none;
}
input {
margin-right: 0.5rem;
box-sizing: border-box;
border-width: 1px;
border-style: solid;
border-radius: 0.25rem;
background-color: black;
color: transparent;
-webkit-background-clip: text;
background-clip: text;
background-image: linear-gradient(90deg, rgba(179,0,255,1) 5%, rgba(231,0,255,1) 50%, rgba(255,0,254,1) 95%);
}
/* Style the calendar picker icon separately */
input[type="date"]::-webkit-calendar-picker-indicator {
background: none;
color: transparent;
display: inline-block;
width: 16px;
height: 16px;
background-image: url('Images/icon/calender.png');
background-size: cover;
}
button {
background-color: rgb(179,0,255);
background: linear-gradient(90deg, rgba(179,0,255,1) 5%, rgba(231,0,255,1) 50%, rgba(255,0,254,1) 95%);
padding: 0.9rem 2.1rem;
border: 0cm;
}
button:hover {
background-color: rgb(179,0,255);
background: linear-gradient(-90deg, rgba(179,0,255,1) 5%, rgba(231,0,255,1) 50%, rgba(255,0,254,1) 95%);
padding: 0.9rem 2.1rem;
border: 0cm;
}
footer {
padding-top: 0.5rem;
display: -webkit-flex;
-webkit-flex-direction: row;
-webkit-justify-content: center;
}