-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle2.css
More file actions
55 lines (48 loc) · 1006 Bytes
/
style2.css
File metadata and controls
55 lines (48 loc) · 1006 Bytes
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
body {
font-family: sans-serif;
margin: 0;
padding: 20px;
background-color: #f5f5f5;
}
h1 {
text-align: center;
font-size: 2em;
margin-bottom: 20px;
color: #333;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
max-width: 500px;
margin: 0 auto;
background-color: #fff;
border-radius: 5px;
padding: 30px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.strength-meter {
display: flex;
align-items: center;
margin-top: 15px;
height: 10px;
background-color: #ddd;
border-radius: 5px;
overflow: hidden;
}
.strength-bar {
background-color: #ccc;
height: 100%;
transition: width 0.2s ease-in-out;
border-radius: 5px 0 0 5px; /* Match container border radius */
}
#strengthText {
margin-left: 10px;
font-weight: bold;
color: #333;
}
#strengthDescription {
margin-top: 10px;
font-size: 0.9em;
color: #333;
}