aboutsummaryrefslogtreecommitdiff
path: root/static/css/style.css
blob: 5b367d6fde94e3fd96227afb391fe9995f98e495 (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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
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;

  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.navbar p,
.navbar nav {
  display: inline-block;
  margin: auto 2rem;
}

.navbar p {
  font-size: 2rem;
}

nav a {
  color: pink;
  text-decoration: none;
  padding: 0.5rem;
}

.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;
  outline: none;

  color: #FF0000;
}

input[type=text]:hover {
  outline-color: red;
}

#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%;
	}
  .navbar p,
  .navbar nav {
    display: inline-block;
    margin: auto 0.5rem;
  }
  nav a {
    margin: 0;
  }
  .navbar p {
    font-size: 2rem;
  }
}