-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
84 lines (83 loc) · 1.79 KB
/
style.css
File metadata and controls
84 lines (83 loc) · 1.79 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
body {
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
background-color: #0a0a0a;
color: white;
}
h1 {
margin-bottom: 20px;
animation: glow 2s infinite alternate;
text-shadow: 0 0 5px #4CAF50, 0 0 10px #4CAF50, 0 0 20px #4CAF50;
}
@keyframes glow {
0% { text-shadow: 0 0 5px #4CAF50, 0 0 10px #4CAF50, 0 0 20px #4CAF50; }
100% { text-shadow: 0 0 10px #4CAF50, 0 0 20px #4CAF50, 0 0 30px #4CAF50; }
}
.array-container {
display: flex;
align-items: flex-end;
justify-content: space-between;
height: 300px;
width: 80%;
border-radius: 15px;
border: 1px solid rgba(255, 255, 255, 0.2);
background: rgba(30, 30, 30, 0.6);
backdrop-filter: blur(15px);
margin-bottom: 20px;
padding: 10px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
.bar {
margin: 0 2px;
background-color: #3498db;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
.controls {
display: flex;
gap: 10px;
flex-wrap: wrap;
justify-content: center;
}
button, select {
padding: 10px 15px;
font-size: 16px;
cursor: pointer;
border: none;
border-radius: 999em;
background: rgba(30, 30, 30, 0.6);
color: white;
text-shadow: 0 0 5px #4CAF50;
box-shadow: 0px 0px 20px 4px #4CAF50;
backdrop-filter: blur(10px);
transition: transform 0.1s ease;
}
button:active {
transform: scale(0.95);
}
.complexity-container {
background: rgba(30, 30, 30, 0.6);
border-radius: 15px;
padding: 15px;
width: 300px;
text-align: center;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
margin-top: 20px;
font-size: 16px;
}
.slider-container {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
margin-top: 10px;
}
.slider-label {
font-size: 14px;
color: #4CAF50;
}