-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtarget-help.css
69 lines (58 loc) · 1.03 KB
/
target-help.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
#help-parent {
margin: 100px 60px;
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}
.help-text {
background-color: #5d52ba;
padding: 50px;
border-radius: 15px 0 0 15px;
}
.help-text h1 {
color: white;
font-size: 2.5rem;
font-family: 'Roboto', sans-serif;
}
.help-text p {
margin: 30px 0;
font-size: 1.4rem;
color: white;
font-family: 'Montserrat', sans-serif;
}
.item-summary {
display: flex;
gap: 30px;
}
.item-summary p {
color: #7ebdf8;
}
.help-image {
position: relative;
text-align: center;
}
.help-image img {
object-fit: cover;
width: 100%;
height: 100%;
border-radius: 0 15px 15px 0;
}
.image-inside-youtube{
text-align: center;
position: absolute;
top: 40%;
left: 45%;
background-color: rgb(250, 55, 55);
padding: 20px;
border-radius: 50%;
cursor: pointer;
}
.image-inside-youtube a i {
font-size: 2.5rem;
color: white;
}