miguelgargallo commited on
Commit
448baec
1 Parent(s): 787fb1a

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +20 -20
style.css CHANGED
@@ -1,9 +1,24 @@
 
 
 
 
 
1
  @import "furtive-code";
2
  @import "furtive-print";
3
  @import "furtive-links";
4
  @import "furtive-typescale";
5
  @import "furtive-responsive-utils";
6
 
 
 
 
 
 
 
 
 
 
 
7
  body {
8
  color: #fafafa;
9
  font-family: "Courier New";
@@ -13,26 +28,11 @@ body {
13
  padding: .25rem;
14
  }
15
 
16
- h1 {
17
- font-size: 16px;
18
- margin-top: 0;
19
- }
20
-
21
- p {
22
- color: rgb(107, 114, 128);
23
- font-size: 15px;
24
- margin-bottom: 10px;
25
- margin-top: 5px;
26
- }
27
-
28
- .card {
29
- max-width: 620px;
30
- margin: 0 auto;
31
- padding: 16px;
32
- border: 1px solid lightgray;
33
- border-radius: 16px;
34
  }
35
 
36
- .card p:last-child {
37
- margin-bottom: 0;
 
38
  }
1
+ :root {
2
+ --link-color: #01ff70;
3
+ --link-hover-color: #2ecc40;
4
+ }
5
+
6
  @import "furtive-code";
7
  @import "furtive-print";
8
  @import "furtive-links";
9
  @import "furtive-typescale";
10
  @import "furtive-responsive-utils";
11
 
12
+ html,
13
+ body {
14
+ background-color: #222;
15
+ min-height: 100%;
16
+ }
17
+
18
+ html {
19
+ font-size: 18px;
20
+ }
21
+
22
  body {
23
  color: #fafafa;
24
  font-family: "Courier New";
28
  padding: .25rem;
29
  }
30
 
31
+ pre {
32
+ background-color: #333;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33
  }
34
 
35
+ blockquote {
36
+ border-left: 3px solid var(--link-color);
37
+ padding-left: 1rem;
38
  }