-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
112 lines (93 loc) · 1.42 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
107
108
109
110
111
112
* {
padding: 0;
margin: 0;
}
h1 {
color: aliceblue;
font-size: 3rem;
text-align: center;
padding: 2rem;
}
body {
font-family: Arial, Helvetica, sans-serif;
}
header {
height: 150px;
background-color: orange;
}
nav {
padding: 20px;
background-color: olive;
}
nav a {
text-decoration: none;
color: white;
font-weight: bold;
margin-right: 20px;
}
nav a:hover {
color: black;
}
main {
display: flex;
}
section {
padding: 20px;
width: 65%;
}
section h1 {
margin-bottom: 10px;
}
section iframe {
width: 100%;
border: none;
margin-bottom: 10px;
}
aside {
padding: 20px;
width: 35%;
}
footer {
background-color: black;
color: white;
font-weight: bold;
text-align: center;
padding: 20px 0;
}
.flex {
display: flex;
justify-content: space-between;
border-top: 1px solid #CCC;
margin-top: 10px;
padding-top: 10px;
margin-bottom: 10px;
}
.flex span {
display: block;
}
.flex button {
background-color: red;
color: white;
font-weight: bold;
text-transform: uppercase;
border: none;
cursor: pointer;
padding: 0 10px;
}
aside a {
display: flex;
text-decoration: none;
color: black;
margin-bottom: 10px;
}
aside a h2 {
font-size: 14px;
margin-bottom: 5px;
}
aside a span {
display: block;
font-size: 14px;
}
.contenedor {
padding-left: 10px;
}