summaryrefslogtreecommitdiffstats
path: root/static/styles.css
blob: 00e6d59733e1daec1af697cd9e4942fc6b5e98b1 (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
@font-face {
	font-family: 'QuickLove';
	src:
		url('/static/QuickLove.woff2') format('woff2'),
		url('/static/QuickLove.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

body {
	background: #f5f5f5;
	font-size: 25px;
}

h1 {
	font-size: 70px;
	color: #ff69b4;
	font-family: 'QuickLove';
}

section {
	max-width: 800px;
	margin: 0 auto 50px;
	padding: 40px;
	background: #fff0f5;
	border: 5px solid #ff69b4;
	border-radius: 15px;
	box-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
}

img {
	border: 5px solid #ff69b4;
	background: white;
}

a:link {
	color: #ff69b4;
}

a:visited {
	color: #a02090;
}