-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
67 lines (54 loc) · 921 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
* {
font-family: Arial, Helvetica, sans-serif;
}
.fb img {
width: 120px;
border-radius: 50%;
}
.fb {
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
h2 {
text-align: center;
}
.info h3 {
margin-bottom: 0;
}
.info hr {
margin-top: 0;
border: 1px solid gray;
}
p span {
font-weight: 600;
color: #fcb045;
}
.icons {
display: flex;
justify-content: flex-end;
}
.icons img {
width: 25px;
margin-top: 8px;
margin-bottom: 8px;
}
.footer {
padding: 2px;
text-align: center;
font-size: 18px;
background: linear-gradient(90deg, rgba(35,233,235,1) 0%, rgba(232,29,253,1) 50%, rgba(252,176,69,1) 100%);
border-radius: 0 0 16px 16px;
}
main {
margin: 5% 20%;
border: solid 1px #fc538f;
padding: 32px;
box-shadow: 0 5px 10px #fc538f;
background-color: white;
border-radius: 32px 32px 32px 32px;
}
body {
background-color: #f996b9;
}