aboutsummaryrefslogtreecommitdiff
path: root/data/static/style.css
blob: 28eda95a64f8ba7b0855a4f474c247f23a5b3015 (plain) (blame)
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
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  max-width: 500px;
  margin: 0 auto;
  padding: 0;
}

nav {
  margin-top: 8px;
  text-align: center;
  border-radius: 6px;
  background-color: rgb(228, 228, 228);
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav li {
  display: inline-block;
  margin: 10px;
}

a {
  font-weight: bold;
  color: black;
  text-decoration: none;
  border-bottom: 1px dotted black;
}

h1 {
  margin: 60px 0 0 0;
}

.subtitle {
  margin: 8px 0 60px 12px;
}

figure {
  margin: 20px 0;
}

img {
  max-width: 100%;
}

.imgGrid {
  margin: 20px auto;
  line-height: 0;
  column-count: 2;
  column-gap: 0px;
}

.imgGrid img {
  width: 100% !important;
  height: auto !important;
}

footer {
  text-align: center;
  background-color: rgb(228, 228, 228);
  border-radius: 6px;
}

footer p {
  padding: 8px 0;
}

@media only screen 
and (max-width: 520px) {
  body {
    max-width: 400px;
  }
}

@media only screen 
and (max-width: 410px) {
  body {
    max-width: 375px;
  }
}