-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
101 lines (83 loc) · 1.31 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
body {
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
font-size: 18px;
padding: 0;
margin: 0;
}
header {
background-color: rgb(255, 195, 228);
padding: 10px;
display: flex;
justify-content: space-between;
align-items: center;
}
header a {
font-weight: bolder;
text-decoration: none;
color: black;
font-size: 2em;
}
header button {
border-radius: 5px;
cursor: pointer;
font-size: 1em;
padding: 10px;
border: none;
background: transparent;
}
header button:hover {
background-color: black;
color: white;
}
main {
width: 80%;
margin: 0 auto;
}
main h1 {
font-size: 4em;
}
main .portada {
width: 100%;
}
main .datos {
padding-bottom: 30px;
}
main p {
font-size: 2.5em;
}
main a {
color: rgb(243 104, 24);
}
main blockquote {
font-size: 2em;
border-left: solid 15px greenyellow;
background-color: yellowgreen;
padding: 20px;
}
main img {
width: 100%;
height: auto;
}
body.darkmode {
background-color: rgb(32, 32, 44);
color: white;
}
.darkmode header {
background-color: rgb(12, 12, 12);
color: white;
}
.darkmode header a {
color: white;
}
.darkmode button {
color: white;
}
.darkmode button:hover {
background-color: white;
color: black;
}
.darkmode main blockquote {
border-left-color: #333;
background-color: #222;
}