-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
80 lines (66 loc) · 1.18 KB
/
styles.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500&family=Poppins:wght@400;600&display=swap');
*{
box-sizing: border-box;
padding: 0;
margin: 0;
background-color: #1F2937;
color: #FFFDFE;
font-family: 'Inter', sans-serif;
}
/*header part*/
header {
display: flex;
justify-content: space-around;
align-items: center;
margin: 0 auto;
padding-top: 2em;
max-width: 650px;
}
#color-picker {
border: 2px solid #E5E5E5;
width: 18%;
max-width: 60px;
height: 43px;
}
#select{
border: 1px solid #D1D5DB;
border-radius: 6px;
width: 50%;
max-width: 312px;
height: 43px;
}
#button{
background-color: #3D4B60;
width: 22%;
max-width: 123px;
height: 43px;
border: none;
}
/*color part*/
section {
display: flex;
justify-content: space-around;
align-items: center;
flex: 1 1 auto;
flex-wrap: wrap;
height: 550px;
}
.containers {
height: 80%;
width: 20%;
}
img{
width: 100%;
height: 90%;
object-fit: cover;
}
h3{
font-size: 0.8rem;
line-height: 1.5;
font-weight: 500;
}
.h3-container{
display: flex;
justify-content: center;
align-items: center;
}