summaryrefslogtreecommitdiff
path: root/static/style.css
blob: fc55c105c8a49b353047775ea176c7727b38e14a (plain)
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

  body {
    font-family: 'arial';
    padding: 0;
    margin: 0;
  }
  img {
    max-width: 99%;
    width: auto;
    height: auto;
  }
  a:hover {
    text-decoration: underline;
  }
  a {
    text-decoration: none;
  }
  main, header, footer {
    width: 600px;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
    background-color: #ff0000;

    
  }
  footer {
    text-align: center;
    padding: 10px 0 10px 0;
    font-size: 0.5em;
  }
  article {
    margin-bottom: 20px;
    padding: 10px;
  }
  header nav {
    display: flex;
  }
  header a {
    color: #000000;
  }
  header nav a {
    flex-grow: 1;
    text-align: center;
  }
  #logo-space a {
    display: flex;
    flex-direction: row;
    width: 100%;
  }
  #logo-space img {
    align-self: center;
  }
  #logo-space h1 {
    display: flex;
    flex-grow: 2;
  }
  #logo-space #logo {
    display: flex;
    flex: 0 0 45px;
  }