globals.css
1.29 KB
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
.body-xyz{
background: #eff0f500;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.card{
max-width: 300px;
width: 100%;
padding: 24px;
border: 0;
box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
}
.content-section h1{
text-align: center;
font-size: 30px;
line-height: 1.5;
}
.content-section p{
text-align: center;
font-size: 22px;
line-height: 1.5;
}
.icon-group{
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 30px;
}
.icon-group span{
width: 30px;
height: 30px;
border: 1px solid black;
border-radius: 50%;
text-align: center;
line-height: 28px;
font-weight: 600;
}
.icon-group span:nth-child(1){
background: lightblue;
}
.icon-group span:nth-child(2){
background: rgb(70, 172, 206);
}
.icon-group span:nth-child(3){
background: rgb(149, 103, 175);
}
.icon-group span:nth-child(4){
background: rgb(240, 7, 38);
}
.btn-group button{
padding: 10px 28px;
border: 0;
outline: 0;
border-radius: 10px;
}
button:nth-child(2){
margin-left: 5px;
}
.another-group{
display: flex;
align-items: center;
justify-content: space-between;
margin-top: 10px;
}
.another-group h3{
font-size: 14px;
}