blob: 799cbd264789c25cc0872407b3f2077ee5eaf021 (
plain) (
blame)
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
|
:host, .border {
display: flex;
flex-direction: column;
max-width: 300px;
gap: 5px
}
.border {
border-style: solid;
border-width: 1px;
padding: 10px;
margin: 10px;
position: absolute;
background-color: white;
box-shadow: 0 0 10px 10px black;
}
#bar {
width: 100%;
height: 20px;
-webkit-appearance: none;
appearance: none;
border: none;
border-radius: 10px;
overflow: hidden;
background-color: red;
}
#requirement2 {
color: red;
}
|