-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
66 lines (59 loc) · 943 Bytes
/
styles.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
html {
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}
body{
background-color: #092654;
color: white;
font-size: 25px;
}
main{
float: left;
width: 50%;
}
article{
width: 100%;
}
aside{
float: right;
width: 50%;
height: 100vh;
padding-left: 6%;
border-left: 8px solid white;
}
aside button{
margin: 15px;
background-color: #092654;
color: white;
border: 1px solid white;
padding: 5px;
font-size: 20px;
cursor: pointer;
width: 60%;
}
aside a{
padding: 5px;
margin: 10px;
text-decoration: underline;
cursor: pointer;
}
button:hover{
background-color: #576a8a;
}
a:visited{
color: white;
}
footer{
clear: both;
}
.parrafo{
font-size: 22px;
color: silver;
margin-left: 10px;
}
img{
width: 80%;
height: 400px;
}