-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
executable file
·91 lines (74 loc) · 1.25 KB
/
Copy pathindex.css
File metadata and controls
executable file
·91 lines (74 loc) · 1.25 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
@import 'https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap';
body {
font-family: 'Roboto', sans-serif;
background: #5b8e7d;
margin: 0;
padding: 24px;
}
.page {
max-width: 420px;
margin: 0 auto;
padding: 32px;
background: #ffffff;
border-radius: 12px;
box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.3);
}
.header {
text-align: center;
}
.avatar {
width: 200px;
height: 200px;
object-fit: cover;
object-position: 0% 0;
border-radius: 50%;
border: 5px solid #8cb369;
}
.fotobio{
margin-right: 3%;
float: left;
width: auto;
height: 100px;
border-radius: 30%;
border: 5px solid #d5efbd;
}
#containerFoto {
width: 20%;
}
.parrafobio {
width: 100%;
text-align: justify;
}
.title {
font-weight: 700;
margin: 0;
}
.subtitle {
font-weight: 300;
margin-top: 0;
margin-bottom: 24px;
}
.nav {
display: flex;
flex-wrap: wrap;
gap: 8px;
width: 100%;
justify-content: center;
margin-bottom: 32px;
}
.nav__button {
display: block;
padding: 8px 12px;
background: #2a5648;
text-decoration: none;
color: #fff;
border-radius: 4px;
transition: background 0.4s;
}
.nav__button:hover {
background: #6aa08e;
}
.nav__button.active {
color: #fff;
background: #8cb369;
}