-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
80 lines (73 loc) · 1.45 KB
/
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
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
body{
margin: 0;
font-family: 'Inter', sans-serif;
height: 100%;
background: linear-gradient(to right, rgb(238, 226, 228), rgb(221, 44, 80));
}
.container{
display: flex;
flex-direction: column;
align-items: center;
}
/* heading part css*/
.box{
padding: 20px;
text-align: center;
}
.box h1{
padding: 10px;
text-transform: uppercase;
mix-blend-mode: overlay;
box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
background: rgba(0, 0, 0, 0.1);
}
/* section css */
.small-container{
padding: 20px;
width: 50%;
text-align: center;
}
input[type="color"] {
padding: 0;
border: none;
border-radius: 10px;
width: 20px;
height: 20px;
outline: none;
}
input[type="color"]::-webkit-color-swatch {
border: none;
border-radius: 10px;
}
input[type="color"]::-webkit-color-swatch-wrapper {
border: none;
border-radius: 10px;
padding: 0;
}
.small-container button{
border: none;
outline: none;
background: transparent;
}
/* all images inside the container (3 images)*/
.container img{
height: 20px;
width:20px;
}
/* footer */
.footer{
width: 100%;
padding-bottom: 30px;
position: absolute;
left: 0;
bottom: 0;
text-align: center;
}
.footer img{
margin-bottom: -5px;
}
.footer a{
font-weight: 600;
text-decoration: none;
color: rgb(0, 0, 0);
}