-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
103 lines (92 loc) · 1.94 KB
/
style.css
File metadata and controls
103 lines (92 loc) · 1.94 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
@font-face {
font-family: 'Font';
src: url(../social-links-profile-main/assets/fonts/Inter-VariableFont_slnt\,wght.ttf) format('truetype');
font-family: 'Interbold';
src: url(../fonts/static/Inter-Bold.ttf) format('truetype');
font-family: 'Regular';
src: url(../fonts/static/Inter-Regular.ttf)format('truetype');
font-family: 'Semibold';
src: url(../fonts/static/Inter-SemiBold.ttf) format('truetype');
}
*{
margin:0;
padding: 0;
box-sizing: border-box;
}
body{
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
.main{
background-color:black;
height: 100vh;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.main-box{
background-color:rgb(20, 19, 19);
height:auto;
width:auto;
max-width: 720px;
border-radius: 7px;
}
.perfil{
display: flex;
flex-direction: column;
text-align: center;
align-items: center;
margin:10px 5px;
padding: 20px 10px 2px 10px;
}
.perfil > img{
height: 80px;
width: 80px;
border-radius: 50%;
border: none;
margin: 20px;
}
.perfil > h2{
font-family:sans-serif;
font-size: 16px;
color: white;
font-weight: border;
}
.perfil > span{
font-size: 14px;
font-family:'Semibold';
color: rgb(136, 212, 22);
margin: 10px 20px;
font-weight: bold;
}
.perfil > p{
font-size: 14px;
font-family: sans-serif;
color: white;
font-weight: border;
font-family:'Font' ;
}
.link{
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
margin-bottom: 20px;
padding: 5px 20px 20px 20px;
}
.link > a{
height: 40px;
width: 260px;
background-color: rgb(64, 67, 64);
margin: 8px;
display: flex;
justify-content: center;
align-items: center;
text-decoration: none;
color: white;
border-radius: 10px;
font-family: sans-serif;
}