-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
52 lines (48 loc) · 913 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
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap');
*, *::before, *::after{
box-sizing: border-box;
margin: 0;
}
/* ====== GENERAL TAGS ====== */
body{
padding: 80px 7%;
font-family: 'Source Sans Pro', sans-serif;
text-align: center;
}
img{
width: 100%;
height: auto;
margin: 0 auto;
}
p{
margin-top: 30px;
font-size: 18px;
text-align: justify;
}
/* ====== BUTTON STYLING ====== */
#color-picker{
text-align: center;
margin: 25px auto 60px;
}
.btn{
width: 50px;
height: 40px;
display: inline-block;
border: 2px solid #120101ad;
cursor: pointer;
margin: 0.3rem;
border-radius: 45%;
}
/* ====== PARTICULAR COLOR STYLING ====== */
#color1{
background-color: #f5deb3;
}
#color2{
background-color: #7fffd4;
}
#color3{
background-color: #dda0dd;
}
#color4{
background-color: #cd5c5c;
}