-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathselectionSort.css
150 lines (141 loc) · 2.75 KB
/
selectionSort.css
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
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Permanent+Marker&family=Pixelify+Sans&family=Poppins&family=Roboto:wght@400;700&display=swap');
*{
margin: 0;
padding:0;
/* color:black; */
font-family:Poppins;
text-decoration: none;
}
body {
background-color:#8EA7E9;
font-size: 20px;
}
header{
border:solid 3px black;
border-radius:6px;
}
.center{
background-color:#526D82;
display:flex;
justify-content: center;
align-items: center;
height:7vw;
}
.center, h1{
color: #132043;
font-size: 6vw;
padding:15px;
border-radius:6px;
}
.center{
color: white;
}
#array-cont{
/* overflow: hidden; */
height: 54vh;
padding-bottom:3vh;
}
.flex-container{
padding-top: 6vw;
display: flex;
flex-wrap: nowrap;
height: 27vw;
justify-content: center;
}
.flex-item{
background:#F875AA;
margin: 1px;
border: 1pt solid black;
width: 21px;
transition: 0.1s all ease;
}
.row{
/* background-color: red; */
margin-top:5vw;
display: flex;
align-items: center;
justify-content:space-around;
}
#clickme{
color: white;
font-weight: bold;
font-size: 1vw;
background-color: #27374D;
padding: 12px 27px;
border-radius: 6px;
border: solid 1px black;
}
#clickme1{
text-decoration: none;
color: white;
font-weight: bold;
font-size: 1vw;
background-color:#526D82;
padding: 12px 27px;
border-radius: 6px;
border: solid 1px black;
}
#selectionSortExplain{
padding-top: 5vw;
}
#selectionSortExplain h1{
color:whitesmoke;
padding-left:3vw;
}
#selectionSortExplain p{
text-indent:4vw;
padding:1vh;
padding-left:6vw;
font-size: 2vw;
/* padding-bottom:vw; */
}
#img-div{
display: flex;
justify-content: center;
padding: 2vw;
}
#lastdiv{
display: flex;
color:white;
justify-content: center;
background-color: black;
}
@media screen and (max-width:600px) {
body{
background-color: #132043;
color: white;
}
/* .header{
height:vh;
} */
.center{
background-color:#526D82;
display:flex;
justify-content: center;
align-items: center;
height:15vw;
}
#clickme{
color: white;
font-size: 5vw;
padding: 4vw 12vw;
}
#clickme1{
color: white;
font-size: 5vw;
padding: 4vw 12vw;
}
#array-cont{
/* overflow: hidden; */
height: 33vh;
padding-bottom:3vh;
}
#selectionSortExplain h1{
font-size:9vw;
color: #7293ef;
}
#selectionSortExplain p{
font-size:3vh;
text-indent:7vw;
}
}