summaryrefslogtreecommitdiff
path: root/styles.scss
blob: 510a5144143ab8b0f0392763691c1bfc7eab9408 (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
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
$primary-color: #353535;  /* Grey */
$secondary-color: #DDD1C7;  /* Tan */
$accent-color-1: #AD5D4E;  /* Rust */
$accent-color-2: #18A999;  /* Teal */
$accent-color-3: #6A9170;  /* Muted Green */

$dark-grey: #1c1b20;


$sans-serif-font: 'Helvetica';


//GLOBAL STYLES
* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;

	background-size: cover;
	background-repeat: no-repeat;
	background-color: $secondary-color;

	font-family: sans-serif;
}

//MIXIN
@mixin flexcenter {
	display: flex;
	justify-content: center;
	align-items: center;
}

//MAIN CSS
.landing-page {
	//overflow-x: hidden;
	height: 100vh;
	width: 100%;
	background-color: $secondary-color;

	.menu-container {
		position: fixed;
		top: 0;
		left: 0;
		height: 100vh;
		width: 100%;
		z-index: 5;
		opacity: 1;
		transition: opacity 1500ms;
		@include flexcenter();

		.menu-wrapper {
			list-style: none;

			li {
				margin: 0.5vmin 0;
				display: flex;
				justify-content: left;

				a {
					text-decoration: none;
					font-weight: 700;
					font-size: 15vmin;
					color: rgba(255, 255, 255, 0);
					-webkit-text-stroke: 0.12vmin $primary-color;
					transition-duration: 200ms;

					&:hover {
						color: $primary-color;
						-webkit-text-stroke: 0px $primary-color;
					}
				}

				span {
					position: absolute;
					top: 50%;
					left: 50%;
					transform: translate(-50%, -50%);

					font-size: 68vmin;
					font-weight: 900;
					color: rgba(0, 0, 0, 0.2);
				}
			}
		}
	}
}