-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdataStructures.css
More file actions
158 lines (138 loc) · 2.55 KB
/
dataStructures.css
File metadata and controls
158 lines (138 loc) · 2.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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
body {
text-align: center;
color: white;
background-color: rgb(12, 12, 12);
}
body {
font-family: Arial, Helvetica, sans-serif;
font-size: 20px;
height: 100vh;
margin: 0;
display: flex;
flex-direction: column;
width: 100vw;
/* justify-content: space-around; */
}
body>div {
height: 50%;
/* display: flex; */
}
#bars {
display: flex;
flex-direction: row;
/* align-items: flex-end; */
margin-left: auto;
margin-right: auto;
justify-content: center;
}
.list {
display: flex;
flex-direction: row-reverse;
justify-content: center;
align-items: center;
margin-top: 100px;
width: 80vw;
}
.listdiv {
display: flex;
flex-direction: row;
}
.box, .qbox {
height: 100px;
background-color: cyan;
color: black;
transition: 0.2s all ease;
margin-top: 100px;
margin-bottom: 10px;
line-height: 90px;
border-radius: 15px;
font-weight: 800;
font-size: 2rem;
}
img {
width: 70px;
position: relative;
top: 40px;
height: 50px;
}
.arr {
width: 100px;
height: 100px;
display: none;
}
.flex-container {
margin-top: 20px;
display: flex;
flex-wrap: nowrap;
width: 100%;
height: 500px;
justify-content: center;
transition: 2s all ease;
}
.flex-item {
border: 1pt solid black;
width: 150px;
transition: 0.1s all ease;
display: inline-block;
}
.row {
position: absolute;
bottom: 0;
display: grid;
grid-template-columns: 1fr 1fr 2fr;
}
.btn-div {
position: absolute;
display: flex;
flex-direction: column;
justify-content: center;
width: 20vw;
right: 0;
/* margin-top: 100px; */
}
.btn-div input {
margin: 15px 100px;
height: 25px;
border-radius: 10px;
}
#pushdiv {
display: flex;
flex-direction: column;
}
button {
height: 70px;
min-width: 100px;
width: 250px;
background-image: linear-gradient(144deg, #AF40FF, #5B42F3 50%, #00DDEB);
border: 0;
border-radius: 8px;
box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
color: #FFFFFF;
font-size: 20px;
line-height: 15px;
padding: 19px 24px;
cursor: pointer;
margin: 10px 100px;
font-weight: 700;
}
button:hover {
transform: scale(1.1);
transition: all 0.5s;
}
#headpic {
height: 200px;
width: 200px;
position: absolute;
top: 0;
left: 0;
display: none;
}
#queue {
position: relative;
/* bottom: 0; */
flex-direction: row;
margin-top: 0;
}
.qbox {
background-color: #f7fb00;
}