-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
96 lines (84 loc) · 1.63 KB
/
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
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
* {
box-sizing: border-box;
}
body {
margin: 0;
padding: 15px;
border: 0;
font-size: 14pt;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: rgb(72, 56, 73);
background-color: #d6d6d6;
height: 100vh;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.loader {
min-width: 100vw;
min-height: 100vh;
position: fixed;
top: 0;
left: 0;
background-color: #d6d6d6;
z-index: 1;
display:flex;
align-items: center;
justify-content: center;
font-size: 2rem;
}
.card {
max-width: 350px;
display: flex;
flex-direction: column;
align-items: center;
background-color: #EEE2DF;
box-shadow: 0px 10px 50px -15px rgb(72, 56, 73);
border-radius: 20px;
padding: 20px;
}
.image {
border: rosybrown solid 5px;
height: 100px;
width: 100px;
border-radius: 100%;
}
.titles {
text-align: center;
position: relative;
}
.titles .username, .titles .company {
margin: 0;
margin-top: 10px;
line-height: 1.6rem;
}
.titles .bio {
font-size: 1rem;
}
.content {
background-color: #dfcec9;
opacity: 0.9;
display: flex;
justify-content: space-around;
padding: 15px;
width: 100%;
margin-top: 10px;
line-height: 4px;
border-radius: 10px;
}
.estadistic {
text-align: center;
}
.social {
margin-top: 40px;
display:flex;
align-items: center;
}
.social .icon {
width: 35px;
margin-right: 40px;
}
.social-link:last-of-type .icon {
margin: 0;
}