-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
67 lines (55 loc) · 1002 Bytes
/
Copy pathstyles.css
File metadata and controls
67 lines (55 loc) · 1002 Bytes
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Segoe UI", Verdana, sans-serif;
}
body {
padding: 20px;
min-height: 100vh;
font-size: 18px;
}
input,
select,
button {
font-size: 15px;
}
section {
padding: 20px;
display: flex;
column-gap: 20px;
justify-content: center;
}
.card {
padding: 16px;
min-width: 200px;
display: flex;
flex-direction: column;
row-gap: 24px;
align-items: center;
border: 1px solid black;
border-radius: 10px;
}
.year-card button {
margin-left: auto;
padding: 2px 8px;
}
.year-card select {
padding: 2px 8px;
}
.year-card .months-container {
display: flex;
flex-direction: column;
row-gap: 6px;
}
.year-card .months-container label {
width: 100%;
text-align: right;
}
/* Display Logic */
.year-card {
display: none;
}
.year-card .months-container {
display: none;
}