-
Notifications
You must be signed in to change notification settings - Fork 5
/
styles.css
146 lines (108 loc) · 3.34 KB
/
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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
/* base variables */
/* Edit the CSS properties in this file to create a custom
Distill theme. Only edit values in the right column
for each row; values shown are the CSS defaults.
To return any property to the default,
you may set its value to: unset
All rows must end with a semi-colon. */
/* Optional: embed custom fonts here with `@import` */
/* This must remain at the top of this file. */
@import url('https://fonts.googleapis.com/css2?family=Montserrat');
@import url('https://fonts.googleapis.com/css2?family=Lora');
@import url('https://fonts.googleapis.com/css2?family=Fira%20Mono');
html {
/*-- Main font sizes --*/
--title-size: 30px;
--body-size: 1.0rem; /* edited */
--code-size: 0.9rem; /* edited */
--aside-size: 12px;
--fig-cap-size: 13px;
/*-- Main font colors --*/
--title-color: #252C4F;
--heading-color: #252C4F;
--body-color: #383838; /* edited */
--aside-color: #252C4F;
--fig-cap-color: #252C4F;
/*-- Specify custom fonts ~~~ must be imported above --*/
--heading-font: 'Encode', sans-serif; /* edited */
--mono-font: 'Fira Mono', monospace; /* edited */
--body-font: 'Roboto', sans-serif; /* edited */
--navbar-font: 'Encode', sans-serif; /* edited */
}
/*-- WEBSITE HEADER + FOOTER --*/
/* These properties only apply to Distill sites and blogs */
.distill-site-header {
--title-size: 20px; /* edited */
--text-color: #FFFFFF; /* edited */
--text-size: 20px; /* edited */
--hover-color: #383838; /* edited */
--bkgd-color: rgb(249, 83, 85); /* edited */
}
.distill-site-footer {
--text-color: rgba(255, 255, 255, 0.8);
--text-size: 20px;
--hover-color: #EE3D8F;
--bkgd-color: #0F2E3D;
}
/* PRUEBAS
/*-- Additional custom styles --*/
.distill-site-header .logo img{
max-height: 50px; /* Makes logo bigger, default was 20px */
}
.distill-site-header .title {
font-weight: 900;
}
ul > li::marker {
color: #EE3D8F;
}
d-title {
padding-top: 13rem; /*so that navbar doesn't overlap fixed title */
}
h1, h2, h3, h4, h5, h6 {
margin-top: 20px;
font-family: "Encode Sans";
letter-spacing: 2px;
line-height: 2rem; /* increases, so wrapping headers don't overlap */
}
body {
font-family: "Roboto";
color: #1f1f1f;
}
/* --------------Navbar-------------------- */
.distill-site-nav a {
color: black;
text-decoration: none;
}
.distill-site-header{
padding: 10px 0px;
font-size: 15px;
font-family: 'Encode Sans', sans-serif;
letter-spacing: 2px;
/* background-image for fade-to-white color of navbar */
background-color: #252C4F;
}
.distill-site-nav a {
color: #FFFFFF;
background-color: #252C4F;
text-decoration: none;
}
.distill-site-nav a:hover {
color: black;
}
/* -------------Footer------------------*/
.distill-site-footer {
color: #f7f7f7b0;
background-color: #252C4F;
margin-top: 0px;
padding: 50px 20px;
font-size: 12px;
letter-spacing: 1px;
text-transform: uppercase;
line-height: 12px;
text-align: left;
}
.infobox {
padding: 1em 1em 1em 1em;
border: 1px solid black;
border-radius: 10px;
}