-
Notifications
You must be signed in to change notification settings - Fork 2
/
help.css
87 lines (74 loc) · 1.44 KB
/
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#section__1 {
width: 100%;
display: flex;
justify-content: space-evenly;
margin: auto;
background-color: #F5F8FA;
padding: 20px 0 20px 0;
}
#section__1 > div {
width: 25%;
display: flex;
justify-content: space-between;
align-items: center;
box-sizing: border-box;
border: 1px solid white;
background-color: white;
padding: 0px 20px;
font-family: sans-serif;
}
#section__1 div:hover {
background-color: gray;
color: white;
cursor: pointer;
}
#section__1 i{
color: #2E3192;
}
#section__1 > div > div{
line-height: 0.5;
box-sizing: border-box;
white-space: nowrap;
text-align: center;
padding: 10px 0 10px 0;
}
#section__1 > div > div > h4 {
color: #2E3192;
}
#section__1 > div > div > p {
font-size: 12px;
color: #585858;
}
#section__2{
display: flex;
margin-left: 40px;
gap: 40px;
}
#section__2 h4 {
font-family: sans-serif;
font-size: 13px;
font-weight: 400;
margin-left: 40px;
color: #3b3a3a;
}
#section__2 > div {
width: 28%;
}
#section__2 > div > ul {
text-align: justify;
list-style: none;
font-size: 11px;
}
#section__2 > div > ul >li {
font-family: sans-serif;
font-size: 19;
margin-bottom: 10px;
color: #585858;
}
#section__2 > div > ul >li:hover {
text-decoration: underline;
cursor: pointer;
}
#section__2 > div > ul >hr {
border: 0.5px solid rgb(235, 232, 232);
}