aboutsummaryrefslogtreecommitdiff
path: root/static/css/style.css
blob: fa54eee3f6ce1ab7365a170be322bff254338367 (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
87
body {
	background-color: #232627;
	height: 100vh;
	margin: 0;
	color: #FFFFFF;
	text-align: center;
}

.navbar {
	height: 3.5rem;
	border-bottom: 1px solid pink;
	margin-bottom: 2.5rem;
	background-color: #222526;
	overflow: hidden;
}

.root {
	width: 90%;
	height: 70vh;
	margin: auto;
	background: url("/media/hell-girl-full.png");
	background-repeat: no-repeat;
}

.content {
	float: right;
	margin-top: 10vh;
}

form {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-evenly;
	margin: 1.5rem auto;
	width: 50%;
}

/*
form input {
	margin: 1rem 2rem;
}
*/

input[type=text] {
	height: 2rem;
	box-sizing: border-box;
}

#submit-button {
	height: 2rem;
	width: 5rem;
	background-color: #ff0057;
	border: 1px solid #e30808;
	border-radius: 8px;
	transition-duration: 0.4s;
	box-sizing: border-box;
}

#submit-button:hover {
	background-color: #ff0000;
}

strong, em {
	color: red;
	font-style: normal;
}
em {
	font-size: 2rem;
}
h1, h3, strong, em {
	margin: 0.5rem 0;
	display: inline;
}
h1, h3 {
	background-color: #23262766;
}


@media only screen and (max-device-width: 480px) {
	.content {
		margin: auto;
	}
	form {
		width: 100%;
	}
}