-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
106 lines (91 loc) · 2.3 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
97
98
99
100
101
102
103
104
105
106
/*importa Fuentes*/
@import url('https://fonts.googleapis.com/css2?family=Otomanopee+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Loop&display=swap');
/*aplicando CSS a cada ID*/
#title{
position:static;
color:rgb(8, 70, 70);
margin:auto;
font-size: 34px;
font-family: 'Otomanopee One', sans-serif;
text-align: center;
background-color: rgba(14, 201, 235, 0.336);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.158), 0 6px 6px rgba(0, 0, 0, 0.445);
border: 1px solid #ccc;
}
#tribute-info{
border: 1px solid #ccc;
font-size: 22px;
font-family: 'Zen Loop', sans-serif;
padding: 20px;
text-align: justify;
background-color: rgba(14, 201, 235, 0.336);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.158), 0 6px 6px rgba(0, 0, 0, 0.445);
}
#image{
max-width: 100%;
border-color: rgb(8, 70, 70);
border-width: 5px;
border-style: solid;
border-radius: 20px;
position:relative;
margin:0 auto;
height: auto;
display:block;
}
#image:hover{
transform: scale(1.07);
}
#img-div{
border: 1px solid #ccc;
padding:15px;
margin:auto;
}
#image-caption{
text-align: center;
font-family: sans-serif;
color:rgba(9, 43, 43, 0.884);
padding: auto;
margin:10px auto;
}
#div-Date{
position:static;
color:rgb(8, 70, 70);
margin:0 auto 150px auto;
font-size: 34px;
font-family: 'Otomanopee One', sans-serif;
text-align: center;
background-color: rgba(14, 201, 235, 0.336);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.158), 0 6px 6px rgba(0, 0, 0, 0.445);
border: 1px solid #ccc;
}
ul{
margin: auto;
line-height: 1.5;
}
li{
margin:auto;
color:rgb(50, 61, 61);
}
body{
background-color: rgb(179, 215, 221);
}
#div-biography{
position:static;
margin:auto auto 10px auto;
color:rgba(9, 210, 245, 0.89);
font-size: 30px;
font-family: 'Otomanopee One', sans-serif;
text-align: center;
background-color: rgba(3, 40, 46, 0.521);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.158), 0 6px 6px rgba(0, 0, 0, 0.445);
border: 1px solid #ccc;
}
@media(min-width:800px){
#title{
margin:60px 200px 0;
}
#div-date{
margin:0 200px 150px;
}
}