-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle4.css
More file actions
43 lines (38 loc) · 733 Bytes
/
Copy pathstyle4.css
File metadata and controls
43 lines (38 loc) · 733 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
.flex-container {
margin-top: 20px;
display: flex;
flex-wrap: nowrap;
width: 100%;
height: 500px;
justify-content: center;
transition: 2s all ease;
}
.flex-item {
background: blue;
border: 1pt solid black;
width: 10px;
transition: 0.1s all ease;
}
.row {
display: grid;
grid-template-columns: 1fr 1fr 2fr;
}
#input {
display: flex;
padding: 10px;
justify-content: space-around;
}
.bar {
position: static;
width: 50px; /* Adjust as needed */
background-color: #007bff;
margin: 0 0.5px; /* Adjust as needed */
}
.bar-number {
position: relative;
bottom: -20px; /* Adjust as needed */
left: 50%;
transform: translateX(-50%);
color: #fff;
font-size: 2px; /* Adjust as needed */
}