-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
55 lines (46 loc) · 986 Bytes
/
style.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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 16px;
text-align: center;
background-repeat: no-repeat;
background-size: contain;
}
.title {
color: rgb(154, 9, 146);
font-size: 2.5rem;
margin: 2% auto;
}
.color-container {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
row-gap: 5vh;
position: absolute;
width: 97vw;
margin-left: 2.7vw;
/* grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr; */
}
.color-item {
background-color: antiquewhite;
border-radius: 5px;
border: none;
box-shadow: 0 0 10px gray;
padding: 3vh 2vw;
text-align: center;
width: 200px;
}
.btn {
background-color: rgba(34, 56, 78, 0.6);
padding: 0.5rem 0.6rem;
font-size: 1.6rem;
border: none;
border-radius: 5px;
cursor: pointer;
}
.btn:active {
border: 2px transparent solid;
}