-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
99 lines (88 loc) · 1.85 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
body {
text-align: center;
font-family:'Times New Roman', Times, serif;
background-color: white;
}
.container{
width: 70%;
height: 100%;
margin: 0px auto;
border-radius: 5px;
border: 5px solid rgb(199, 121, 134);
padding-left: 5px;
padding-right: 5px;
background-color:rgb(red, green, blue);
margin-top: 10px;
margin-bottom: 10px;
}
header {
color: gold;
text-align: center;
background-color: rgb(199, 121, 134);
width: 100%;
height: 100%;
line-height: 300%;
margin-top: 10px;
margin-bottom: 10px;
border-radius: 5px;
border: 3px solid gold;
}
nav {
font-size: 15px;
text-align: center;
background-color: gold;
color: rgb(199, 121, 134);
border-radius: 5px;
margin-top: 10px;
margin-bottom: 10px;
line-height: 250%;
width: 100%;
height: 100%;
border: 3px solid rgb(199, 121, 134);
}
#contenido {
width: 70%;
height: 100%;
background-color: rgb(199, 121, 134);
margin-top: 10px;
margin-bottom: 10px;
float: left;
line-height: 200px;
border: 3px solid gold;
}
#contenido h1{
font-size: 200%;
text-align: center;
color:white;
height: 300px;
line-height: 50px;
}
aside {
width: 29%;
height: 100%;
background-color: gold;
margin-top: 10px;
margin-bottom: 10px;
float: right;
border: 1px solid rgb(199, 121, 134);
}
aside h1 {
font-size: 200%;
text-align: center;
height: 292px;
color: white;
line-height: 300px;
}
.clearfix {
clear: both;
}
footer {
background-color: rgb(199, 121, 134);
color: gold;
width: 100%;
height: 70%;
line-height: 70px;
border-top: 1px solid black;
margin-top: 10px;
border: 3px solid gold;
}