-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
112 lines (93 loc) · 1.45 KB
/
Copy pathstyles.css
File metadata and controls
112 lines (93 loc) · 1.45 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
.imgDiv {
height: 70px;
width: 70px;
margin: 0 0 0 5px;
}
.img {
height: 100%;
width: 100%;
}
.tier {
display: flex;
border: solid white 2.5px;
border-radius: 5px;
margin: 5px;
}
.tier>h1 {
padding: 0 10px;
display: flex;
height: 100%;
width: 20%;
border-right: white dashed 2.5px;
align-items: center;
}
.tierItems {
display: flex;
padding: 0 0px 0 5px;
height: 70px;
width: 80%;
align-items: center
}
#sec3 {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.imgDiv:hover {
opacity: .6;
cursor: grabbing;
}
body {
background-color: #242222;
}
#mainHeading {
font-size: 2.5rem;
text-align: center;
margin: 20px 0;
color: white;
}
label {
margin-right: 10px;
color: white;
}
input[type="submit"],
button {
padding: 8px 16px;
background-color: #393c39;
color: white;
border: none;
border-radius: 6px;
font-size: 1rem;
cursor: pointer;
margin-left: 10px;
transition: background-color 0.3s ease;
}
.tier {
position: relative;
}
.delete-btn {
position: absolute;
top: 5px;
right: 5px;
display: none;
}
.tier:hover .delete-btn {
display: block;
}
#imgFile {
margin-left: 20px;
}
#frm2 {
color: white;
display: flex;
align-items: center;
gap: 10px;
}
#sec2 form {
display: flex;
align-items: center;
gap: 10px;
}
#sec2 label {
white-space: nowrap;
}