-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
42 lines (41 loc) · 692 Bytes
/
style.css
File metadata and controls
42 lines (41 loc) · 692 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
.container-fluid{
min-height: 92vh;
transition: all 0.5s;
}
#background{
background: #4f0000;
color: white;
}
.box{
background: white;
padding: 50px;
border-radius: 40px;
margin: 20px;
box-shadow: inset 0px 0px 20px 5px #b1b1b1;
}
.color-name{
border-radius: 20px;
padding: 20px;
background: rgb(0, 0, 0);
color: white;
font-weight: bolder;
font-size: 50px;
}
#button{
background: black;
color: white;
}
@media (max-width:870px) {
.color-name{
font-size: 40px;
}
}
@media (max-width:450px) {
.box{
padding: 50px 0px 50px 0px;
margin: 20px;
}
.color-name{
font-size: 20px;
}
}