-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
101 lines (98 loc) · 1.99 KB
/
style.css
File metadata and controls
101 lines (98 loc) · 1.99 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
:root {
--bar-background-color: #f5f5f5;
--sort-btn-color: #f5f5f5;
--sort-btn-background-color: #212529;
--source-code-color: #00ffff;
--shadow-color: #888888;
}
body{
background-color: #212529;
color: #fff;
text-align: center;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
zoom: 75%;
height: 100vh;
transition: 0.5s;
-webkit-transition: 0.5s;
-moz-transition: 0.5s;
-ms-transition: 0.5s;
-o-transition: 0.5s;
}
a, a:hover, a:focus, a:active{
text-decoration: none;
color: #ffffff;
}
.algo-heading span{
color: #9b9d9e;
transition: .5s;
}
.algo-heading span{
color: white;
}
.range {
color: #ffffff;
}
/* Dark and Light mode */
.toggle{
cursor: pointer;
transition: 0.5s;
-webkit-transition: 0.70s;
-moz-transition: 0.70s;
-ms-transition: 0.70s;
-o-transition: 0.70s;
}
#light:hover{
color: yellow;
}
.about{
font-size: 25px;
font-family: 'Courier New', Courier, monospace;
margin-left: 20px;
}
.container-fluid{
padding: 1% 2% 0 2%;
text-align: left;
}
.nav-items{
margin-left: auto;
font-size: 1.5rem;
font-weight: bold;
}
.random-array{
margin-right: 1rem;
}
.nav-dropdown{
font-size: 1.5rem;
font-weight: bold;
}
.BARS{
margin-top: 5%;
height: 500px;
width: 100%;
text-align: center;
}
.stable{
height: 500px;
width: 0.1%;
display: inline-block;
}
.bar{
background-color: var(--bar-background-color);
margin-right: 0.1%;
margin-left: 0.3%;
border-radius: 50px;
box-shadow: 3px 5px var(--shadow-color);
bottom: 0px;
display: inline-block;
}
.btn-sort, .btn-sort:disabled{
background-color: var(--sort-btn-background-color);
color: var(--sort-btn-color);
font-size: 1.75rem;
font-weight: bold;
border-radius: 50px;
box-shadow: 5px 3px var(--shadow-color);
width: 50%;
margin-left: 10%;
margin-right: 10%;
}