-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSVETOFOR.html
51 lines (49 loc) · 1.24 KB
/
SVETOFOR.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSS Box traffic Lights</title>
<style>
#light{
width: 150px;
background-color: #333;
height: 450px;
border-radius: 10px;
margin: 10px;
padding-top: 25px;
box-shadow: black 5px 5px ;
}
#light .red{
width: 120px;
background-color: red;
height: 120px;
border-radius: 100px;
margin: 15px;
box-shadow: black 5px 5px ;
}
#light .yellow{
width: 120px;
background-color: yellow;
height: 120px;
border-radius: 100px;
margin: 15px;
box-shadow: black 5px 5px ;
}
#light .green{
width: 120px;
background-color: green;
height: 120px;
border-radius: 100px;
margin: 15px;
box-shadow: black 5px 5px ;
}
</style>
</head>
<body>
<div id="light">
<div class="red"></div>
<div class="yellow"></div>
<div class="green"></div>
</div>
</body>
</html>