aboutsummaryrefslogtreecommitdiff
path: root/static/css/old/style.css
blob: d7326bf87ff2dbbfa2cbc29696243d2ccb1c5ec4 (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
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

body {
	background-color: #000000;
	color: #FFFFFF;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	margin: 0;
}

* { 
	font-family: 'Roboto', sans-serif;
	text-align: center;
}

form {
	display: flex;
	flex-direction: column;
	align-items: center;
}

input[type=text] {
	height: 1.5rem;
	width: 200px;
	margin: 0;
	box-sizing: border-box;
	color: red;

  border-radius: 3px;
  border: none;
  outline: none;
}

input[type=submit] {
	background-color: #C0C8CA;
	color: #000000;
	width: 3.5rem;
	height: 1.7rem;
	margin: 1.3rem;
}

input[type=submit]:hover {
	background-color: #A0A8C8;
  border: none;
}