-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
96 lines (88 loc) · 1.72 KB
/
style.css
File metadata and controls
96 lines (88 loc) · 1.72 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
body {
font-family: Arial, sans-serif;
background: #f7f7f7;
margin-top: 10px;
}
.wrapper {
display: flex;
flex-direction: column;
align-items: center;
flex-wrap: wrap;
}
.prog_container {
display: flex;
width: 100%;
gap: 30px;
justify-content: center;
padding: 30px 0;
}
form {
display: flex;
align-items: center;
flex-wrap: wrap;
margin: 10px 0;
}
.results {
display: flex;
flex-direction: column;
flex-wrap: wrap;
align-items: flex-start;
font-size: 20px;
}
input[type="number"] {
width: 60px;
padding: 6px;
margin-right: 10px;
font-size: 14px;
}
label {
margin-right: 15px;
font-size: 14px;
}
#controls {
display: flex;
flex-direction: column;
gap: 10px;
}
button {
padding: 8px 14px;
margin-right: 6px;
font-size: 14px;
cursor: pointer;
}
#stepLabel {
font-weight: bold;
}
#grid {
display: grid;
grid-template-columns: repeat(7, 50px);
gap: 4px;
}
.cell {
width: 50px;
height: 50px;
border-radius: 6px;
border: 1px solid #bbb;
display: flex;
align-items: center;
justify-content: center;
font-size: 12px;
background-color: white;
transition: background-color 0.4s;
}
.start {
background: #4caf50 !important;
color: white;
}
.end {
background: #f44336 !important;
color: white;
}
.must {
background: #ffeb3b !important;
color: black;
}
#result {
font-size: 32px;
font-weight: bold;
}