-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
55 lines (49 loc) · 941 Bytes
/
index.css
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
.block__color {
width: 500px;
height: 500px;
border: 1px solid #000;
margin: auto;
margin-bottom: 50px;
border-radius: 20px;
transition: background-color .5s ease;
}
.block {
display: flex;
justify-content: center;
flex-direction: column;
margin-top: 150px;
}
#btn {
width: 300px;
margin: auto;
padding: 15px;
border-radius: 15px;
border: 1px solid #000;
font-weight: 700;
font-size: 20px;
transition: all 0.5s ease;
background-color: #fff;
}
#btn:hover {
background-color: rgb(11, 228, 11);
cursor: pointer;
}
.block__hex-color {
text-align: center;
display: block;
margin-bottom: 50px;
font-size: 20px;
font-weight: 700;
}
@media (min-width: 320px) {
.block__color {
width: 300px;
height: 300px;
}
}
@media (min-width: 998px) {
.block__color {
width: 500px;
height: 500px;
}
}