summaryrefslogtreecommitdiff
path: root/md/wedding/styles.css
blob: 594e8956cd1b6c0f09966eb71a22e89df7f62e87 (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
115
116
117
118
119
120
121
122
123
124
125
126
/* stylesheet for wedding */

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

:root {
  /* custom colors */
  --teal:#4eb4b4;
}

#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-weight: 700;
  font-size: 1.5em;
}

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

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

body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='88' viewBox='0 0 80 88' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 21.91V26h-2c-9.94 0-18 8.06-18 18 0 9.943 8.058 18 18 18h2v4.09c8.012.722 14.785 5.738 18 12.73 3.212-6.99 9.983-12.008 18-12.73V62h2c9.94 0 18-8.06 18-18 0-9.943-8.058-18-18-18h-2v-4.09c-8.012-.722-14.785-5.738-18-12.73-3.212 6.99-9.983 12.008-18 12.73zM54 58v4.696c-5.574 1.316-10.455 4.428-14 8.69-3.545-4.262-8.426-7.374-14-8.69V58h-5.993C12.27 58 6 51.734 6 44c0-7.732 6.275-14 14.007-14H26v-4.696c5.574-1.316 10.455-4.428 14-8.69 3.545 4.262 8.426 7.374 14 8.69V30h5.993C67.73 30 74 36.266 74 44c0 7.732-6.275 14-14.007 14H54zM42 88c0-9.94 8.06-18 18-18h2v-4.09c8.016-.722 14.787-5.738 18-12.73v7.434c-3.545 4.262-8.426 7.374-14 8.69V74h-5.993C52.275 74 46 80.268 46 88h-4zm-4 0c0-9.943-8.058-18-18-18h-2v-4.09c-8.012-.722-14.785-5.738-18-12.73v7.434c3.545 4.262 8.426 7.374 14 8.69V74h5.993C27.73 74 34 80.266 34 88h4zm4-88c0 9.943 8.058 18 18 18h2v4.09c8.012.722 14.785 5.738 18 12.73v-7.434c-3.545-4.262-8.426-7.374-14-8.69V14h-5.993C52.27 14 46 7.734 46 0h-4zM0 34.82c3.213-6.992 9.984-12.008 18-12.73V18h2c9.94 0 18-8.06 18-18h-4c0 7.732-6.275 14-14.007 14H14v4.696c-5.574 1.316-10.455 4.428-14 8.69v7.433z' fill='%23009999' fill-opacity='0.4' fill-rule='evenodd'/%3E%3C/svg%3E");
}

article {
  margin-top: 7em;
  margin-left: 10%;
  padding: 0;
  height: 100%;
  width: 80%;
}

figure {
  width: 100%;
  margin: 0;
  padding: 1em;
  background-color: white;
  box-shadow: 0 0 5px black;
}

figure img {
  width: 100%;
}

figure figcaption {
  color: black;
  text-align: right;
  font-weight: 400;
  font-size: 2em;
  font-family: 'Reenie Beanie', cursive;
}

p {
  margin: 1em;
  padding: 1em;
  text-align: justify;
  text-indent: 2em;
  font-weight: 400;
  font-size: 1em;
  font-family: 'Arapey', serif;
  background-color: white;
  box-shadow: 0 0 5px black;
}

blockquote {
  text-align: center;
}

iframe {
  width: 100%;
}

h1 { /* decorative page title */
  margin: 0;
  font-weight: 400;
  font-size: 7em;
  font-family: 'Fredericka the Great', cursive;
  text-align: center;
  color: black;
}

h2 { /* decorative page subtitle */
  font-weight: 400;
  font-size: 4em;
  font-family: 'Reenie Beanie', cursive;
  text-align: center;
  color: black;
}

h3 { /* section title */
  margin: 1em;
  font-weight: 400;
  font-size: 3em;
  font-family: 'Arapey', serif;
  text-align: left;
  color: black;
}