-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
73 lines (65 loc) · 1.15 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
:root {
--txt: #bbb;
--bkg: #111;
}
* {
margin: 0;
padding: 0;
background-color: var(--bkg);
color: var(--txt);
font-family: 'Source Sans Pro', sans-serif;
user-select:none;
-ms-user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
}
.age {
width: 100vw;
margin-top: 15vh;
text-align: left;
cursor: default;
font-weight: bold;
}
.age .title {
font-size: 10vmin;
padding: 5vmin 0 0 0;
}
.age input {
font-size: 5vmin;
padding: 10px;
margin: 15px 0;
border-radius: 10px;
border: 0.4vmin solid var(--txt);
width: 67vmin;
font-family: monospace;
}
#birthdate {
width: 42vmin;
}
#birthtime {
width: 22vmin;
}
.button {
font-size: 5vmin;
padding: 2vmin;
margin: 2.5vmin;
width: 30vmin;
border-radius: 10px;
border: 0.4vmin solid var(--txt);
cursor: pointer;
}
.age .time {
font-size: 6vmin;
margin: 10px 0;
}
.container {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
.block {
margin: 20px;
text-align: left;
/* border: 1px solid var(--txt); */
/* width: 70vmin; */
}