hardlyworking commited on
Commit
a4b0d25
·
verified ·
1 Parent(s): b882ebc

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +16 -8
README.md CHANGED
@@ -13,14 +13,15 @@ pinned: false
13
  <meta name="viewport" content="width=device-width, initial-scale=1" />
14
  <title>About Greener Pastures</title>
15
  <style>
16
- body {
 
 
17
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
18
  background-color: #1e1f24;
19
  color: #d4dce3;
20
- margin: 0;
21
- padding: 2em;
22
  display: flex;
23
  justify-content: center;
 
24
  }
25
  .card {
26
  background-color: #2a2c31;
@@ -34,21 +35,28 @@ pinned: false
34
  color: #93c5fd;
35
  margin-top: 0;
36
  font-size: 2.2em;
 
37
  }
38
  p {
39
  line-height: 1.7;
40
  font-size: 1.05em;
41
  color: #d4dce3;
 
42
  }
43
  .emoji {
44
  font-size: 1.2em;
45
  }
46
- a {
47
- color: #8ab4f8;
48
- text-decoration: none;
 
 
49
  }
50
- a:hover {
51
- text-decoration: underline;
 
 
 
52
  }
53
  </style>
54
  </head>
 
13
  <meta name="viewport" content="width=device-width, initial-scale=1" />
14
  <title>About Greener Pastures</title>
15
  <style>
16
+ html, body {
17
+ height: 100%;
18
+ margin: 0;
19
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
20
  background-color: #1e1f24;
21
  color: #d4dce3;
 
 
22
  display: flex;
23
  justify-content: center;
24
+ align-items: center;
25
  }
26
  .card {
27
  background-color: #2a2c31;
 
35
  color: #93c5fd;
36
  margin-top: 0;
37
  font-size: 2.2em;
38
+ text-align: center;
39
  }
40
  p {
41
  line-height: 1.7;
42
  font-size: 1.05em;
43
  color: #d4dce3;
44
+ margin-bottom: 1.2em;
45
  }
46
  .emoji {
47
  font-size: 1.2em;
48
  }
49
+ @media (max-height: 700px) {
50
+ body {
51
+ align-items: flex-start;
52
+ padding-top: 2em;
53
+ }
54
  }
55
+ @media (max-width: 768px) {
56
+ .card {
57
+ padding: 1.5em;
58
+ margin: 1em;
59
+ }
60
  }
61
  </style>
62
  </head>