summaryrefslogtreecommitdiff
path: root/src/scss/auth.scss
blob: 5f4fb91b7e5758e6c0be25e294752d5c2ef16e60 (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
@import "./variables";
@import "./mixins";

#main-content {
	padding-top: 20rem;
	padding-bottom: 5rem;
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.branding {
	max-width: 100%;
	width: 30rem;
	margin-right: 5rem;
}

.branding h1 {
	color: $blue;
	font-family: facebook;
	font-size: 3.5rem;
}

.branding span {
	font-size: 1.5rem;
}

.form {
	display: flex;
	flex-direction: column;
	width: 30rem;
	max-width: 100%;
}

@media(max-width: 1200px) {
	#main-content {
		flex-direction: column;
		align-items: center;
		width: 100%;
		padding: 10rem 1rem;
	}

	.branding {
		margin: 0;
	}

	.form {
		margin-top: 4rem;
	}
}