-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyleBC.css
More file actions
46 lines (44 loc) · 712 Bytes
/
styleBC.css
File metadata and controls
46 lines (44 loc) · 712 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
body{
background-color: gray;
}
h1{
text-align: center;
}
.wrapper{
width:450px;
margin: 0 auto;
}
.container{
display: flex;
justify-content: space-around;
align-items: center;
}
.color{
position: relative;
width: 200px;
margin-bottom: 25px;
}
.tomato .bg_color{
background-color: tomato;
}
.Teal .bg_color{
background-color: teal;
}
.Burlywood .bg_color{
background-color: Burlywood;
}
.Thistle .bg_color{
background-color: Thistle;
}
.bg_color{
height: 300px;
border: 5px solid white;
}
.color_info{
position: absolute;
width: 100%;
background-color: white;
top: 20px;
padding: 0px 10px;
box-sizing: border-box;
}