-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.CSS
More file actions
110 lines (80 loc) · 1.46 KB
/
style.CSS
File metadata and controls
110 lines (80 loc) · 1.46 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
104
105
106
107
108
109
body{
margin: 0px;
width: 1440px;
height: 600px;
}
#contenido{
background-color: hsl(0, 0%, 12%);
width: 450px;
height: 700px;
margin: 720px;
margin-top: 100px;
margin-bottom: 400px;
border-radius: 20px;
position: relative;
}
.circulo{
width: 100px;
height: 100px;
border-radius: 50%;
overflow: hidden;
display: flex;
flex-direction: column;
align-items: center;
margin-left: 175px;
margin-right: 175px;
position: absolute;
margin-top: 60px;
}
.circulo .img{
width: 120px;
height: 180px;
}
#article{
position: relative;
text-align: center;
top: 180px;
font-family: "Inter";
color: white;
}
#article .nombre{
font-size: 22px;
font-weight: 500;
font-family: "Inter";
}
#article .ubic{
font-size: 16px;
font-weight: 700;
font-style: bold;
color: hsl(75, 94%, 57%);
}
#article p{
font-size: 16px;
font-weight: 400;
}
#enlaces{
text-align: center;
margin:75px;
margin-top: 220px;
}
#enlaces .caja{
width: 300px;
height: 50px;
background-color:hsl(0, 0%, 20%);
border-radius: 10px;
}
#enlaces .caja .enlace{
line-height: 50px;
font-size: 14px;
font-weight: 700;
font-family: "Inter";
color: white;
text-decoration: none;
}
#enlaces .caja:hover{
background-color: hsl(75, 94%, 57%) ;
cursor: pointer;
}
#enlaces .caja:hover .enlace{
color: black;
}