summaryrefslogtreecommitdiff
path: root/md/wedding/styles.css
blob: 8989cb5840c45e4f9125000268e81426335dcdb3 (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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/* stylesheet for wedding */

/* google fonts */
@import url('https://fonts.googleapis.com/css?family=Arapey:400,400i|Reenie+Beanie');

:root {
  /* custom colors */
  --teal:#009999;
  --bg:#004380;
}

#topnav {
  margin: 0;
  padding: 0;
  width: 100%;
  top: 0;
  overflow: hidden;
  text-align: center;
  position: fixed;
  background-color: white;
  box-shadow: 0 0 10px black;
}

#topnav a {
  display: inline-block;
  text-align: center;
  padding: 1em 1em;
  text-decoration: none;
  color: var(--teal);
  transition: 0.5s;
  font-family: 'Arapey', serif;
  font-size: 1.2em;
  font-weight: 700;
}

#topnav a:hover {
  box-shadow: 0 0 5px black;
}

html {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-size: 1em;
  background-repeat: no-repeat;
  background-position: center top;
  background-attachment: fixed;
  background-size: cover;
}

article {
  margin-top: 35%;
  padding: 1em;
  background-color: var(--bg);
  box-shadow: 0 0 10px black;
}

figure {
  margin: 0;
  padding: 1em;
  background-color: snow;
  box-shadow: 0 0 5px black;
}

figure img {
  width: 100%;
}

figure figcaption {
  color: black;
  text-align: right;
  font-weight: 400;
  font-style: italic;
  font-family: 'Arapey', serif;
}

p { /* standalone blocks of text */
  text-align: center;
  text-indent: 2em;
  font-weight: 400;
  font-family: 'Arapey', serif;
}

h1 { /* decorative page title */
  font-weight: 400;
  font-size: 5em;
  font-family: 'Reenie Beanie', cursive;
  text-align: center;
  color: var(--teal);
}

h2 { /* decorative page subtitle */
  font-weight: 700;
  font-size: 2em;
  font-family: 'Arapey', serif;
  text-align: center;
  color: white;
}

h3 { /* section title */
  font-weight: 400;
  font-size: 3em;
  font-family: 'Reenie Beanie', cursive;
  color: white;
  text-align: center;
  margin: 1em;
}