-
Notifications
You must be signed in to change notification settings - Fork 0
/
sty.css
65 lines (62 loc) · 1.4 KB
/
sty.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.color-btn:checked + label,
.color-btn:not(:checked) + label {
display: flex;
position: absolute;
transition: all 200ms linear;
border-radius: 4px;
width: 40px;
height: 40px;
border: 2px solid black;
cursor: pointer;
color: #ffeba7;
margin-right: 10px;
box-shadow: 0 12px 35px 0 rgba(16, 39, 112, 0.25);
z-index: 10;
background-position: center;
background-size: cover;
border: 3px solid transparent;
background-color: aqua;
}
[type="radio"]:checked,
[type="radio"]:not(:checked){
visibility: hidden;
position: absolute;
}
.section-fluid-main{
position: relative;
display: block;
width: 100%;
overflow: hidden;
}
.section{
position: relative;
display: flex;
flex-wrap: wrap;
padding: 100px 0;
width: 860px;
}
body {
font-family: "Poppins", sans-serif;
font-weight: 400;
font-size: 15px;
line-height: 1.7;
color: #fff;
background-color: #1f2029;
min-height: 100vh;
margin: 0;
padding: 0;
overflow-x: none;
}
p {
font-family: "Poppins", sans-serif;
font-weight: 400;
font-size: 16px;
line-height: 1.7;
color: #fff;
margin: 0;
}