forked from pvieito/PythonKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCSS(style.css)
More file actions
75 lines (75 loc) · 1.55 KB
/
CSS(style.css)
File metadata and controls
75 lines (75 loc) · 1.55 KB
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
body {
font-family: 'Kantumruy Pro', sans-serif;
background-color: #f4f7f6;
color: #333;
}
.container {
max-width: 1200px;
margin: 20px auto;
padding: 15px;
}
h1 {
text-align: center;
color: #2c3e50;
}
.month-selector {
text-align: center;
margin-bottom: 20px;
font-size: 18px;
}
.month-selector select, .month-selector input {
padding: 8px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 4px;
}
.summary {
text-align: center;
background-color: #eaf2f8;
border-left: 5px solid #3498db;
padding: 10px;
}
#calendar-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 15px;
margin-top: 20px;
}
.day-card {
background: #fff;
border-radius: 8px;
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
padding: 15px;
}
.day-card h4 {
margin: 0 0 10px 0;
padding-bottom: 10px;
border-bottom: 1px solid #eee;
text-align: center;
background-color: #ecf0f1;
border-radius: 4px;
padding: 8px;
}
.input-group {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 8px;
}
.input-group label {
font-weight: 500;
}
.input-group input {
width: 60px;
padding: 5px;
text-align: right;
border: 1px solid #ccc;
border-radius: 4px;
}
.day-results {
margin-top: 15px;
padding-top: 10px;
border-top: 1px dashed #ccc;
font-size: 14px;
color: #007bff;
}