-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbubbleSort.css
More file actions
92 lines (91 loc) · 1.73 KB
/
bubbleSort.css
File metadata and controls
92 lines (91 loc) · 1.73 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
@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');
*{
font-family:Poppins;
/* color: whitesmoke; */
margin:0;
padding:0px;
}
p{
font-size:2vw;
padding:3px;
}
body{
font-family: popins;
display: flex;
align-items:center;
flex-direction: column;
background-color:#D2E0FB;
}
#heading{
display: flex;
font-size:2.5vw;
justify-content: center;
background-color:#132043;
color: whitesmoke;
width:100%;
}
h2{
color:#132043;
padding:9px;
font-size:4vw;
}
#container{
height:200px;
display:flex;
align-items: end;
color: aqua;
}
#container2{
padding-top:48px;
padding-bottom:30px;
}
.bar{
width:1vw;
background-color:#F875AA;
margin:2px;
}button{
padding: 9px 15px;
margin:6px;
border-radius:3px;
background-color: #132043;
color: #F875AA;
cursor: pointer;
}
.explanation{
color: black;
margin-top: 21px;
margin-left:21px;
padding:12px;
}
.img-div{
margin-left: 27px;
display: flex;
flex-direction: column;
}
.end{
display: flex;
flex-direction:column;
padding: 90px;
}
.homeButton{
background-color: #f0f8ff;
border-radius: 6px;
width:150px;
margin-left: 150px;
margin-top: 21px;
cursor: pointer;
box-shadow:4px 8px 6px #F875AA;
transition: all ease 3s;
}
.homeButton:hover{
background-color: #F875AA;
color:white;
}
#lastdiv{
display: flex;
color:white;
justify-content: center;
background-color: black;
width:100%;
height:9vh;
}