summaryrefslogtreecommitdiff
path: root/beauty.scss
blob: 6e622b6c03c5e579fd3bda72034ccbb51198af82 (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
/// Import stylesheet for pages
@use 'page';

// Import fonts
@use 'fonts';

// The SCSS stylesheet for my good old website twoexem.com
// The license is included in the file LICENSE.txt
// If you did not receive a copy of the license with this file, you may download it under https://mit-license.org/
// Copyright © 2024 Milan Mišić (eMail: twoexem@gmail.com)

html {
	height: 100vh;
}

body {
	// Body styling section, gives everything a good look
	text-align: center;
	justify-content: center;
	width: 90%;
	max-width: auto;
	margin: 2em auto;
	font: 19px 'Prompt';
	letter-spacing: -1px;
	background-image: url("resources/page_background.jpg");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	background-attachment: fixed;

	// Link styling section
	a:link {
		color: #00ffff;
	}
	a:visited {
		color: #8ad4ff;
	}
	a:hover {
		color: #ffffff;
	}
}

/*main {
	border: transparent solid 10px;
	border-radius: 5px;
	padding: 3px;
	backdrop-filter: blur(5px) brightness(80%);
}*/

// Aligns the heading text in the center
header {
	text-align: center;
	
	.subheader {
		font-style: italic;
		font-size: 25px;
	}
}