Seraph19 commited on
Commit
006f858
1 Parent(s): dd94b57

Create Public/css/main.css

Browse files
Files changed (1) hide show
  1. Public/css/main.css +36 -0
Public/css/main.css ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body {
2
+ background-color: #2a2b2f;
3
+ display: flex;
4
+ flex-direction: column;
5
+ justify-content: center;
6
+ font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
7
+ font-weight: 300;
8
+ color: #fff;
9
+ text-align:center;
10
+ }
11
+
12
+ .mona-images {
13
+ max-width: 400px;
14
+ max-height: 400px;
15
+ border: 8px solid #fff;
16
+ }
17
+
18
+ .haiku-containers {
19
+ padding: 10px 0px 20px 0px;
20
+ }
21
+
22
+ .haikus {
23
+ font-size: 18px;
24
+ white-space: pre-wrap;
25
+ }
26
+
27
+ @media only screen and (max-width: 600px) {
28
+ .june-images {
29
+ max-width: 340px;
30
+ max-height: 340px;
31
+ }
32
+
33
+ .haikus {
34
+ font-size: 22px;
35
+ }
36
+ }