-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
69 lines (62 loc) · 1.25 KB
/
style.css
File metadata and controls
69 lines (62 loc) · 1.25 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
body {
font-family: "Poppins", Arial, sans-serif;
text-align: center;
background: linear-gradient(135deg, #e3f2fd, #fefefe);
margin: 0;
padding: 0;
}
h1 {
margin-top: 20px;
font-size: 36px;
color: #1a237e;
letter-spacing: 1px;
font-weight: 600;
}
.buttons {
margin: 25px 0;
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 12px;
}
button {
padding: 12px 24px;
font-size: 15px;
cursor: pointer;
border: none;
border-radius: 8px;
background: #1e88e5;
color: white;
transition: 0.25s ease-in-out;
letter-spacing: 0.5px;
font-weight: 500;
}
button:hover {
background: #1565c0;
transform: translateY(-2px);
}
button:active {
transform: scale(0.97);
background: #0d47a1;
}
#bars-container {
display: flex;
justify-content: center;
align-items: flex-end;
height: 400px;
margin: 35px auto;
padding: 20px;
width: 90%;
max-width: 900px;
background: #ffffff;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.bar {
display: block;
width: 22px;
background-color: steelblue;
margin: 0 3px;
border-radius: 4px 4px 0 0;
transition: height 0.2s ease, background-color 0.2s ease;
}