aboutsummaryrefslogtreecommitdiff
path: root/css/style.css
blob: ee337448e5cd064e8c4b00f94290a2ba153c9af9 (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
body {
	background-color: darkblue;
	background-image: url(../img/bg.jpg);
	background-attachment: fixed;
	background-position: center center;
	background-size: cover;
}

header {
	float: left;
	padding: 2% 0% 0% 6%;
}

h1 {
	color: white;
	font-family: serif;
	font-size: 2.3em;
	font-weight: bold;
	font-variant: small-caps;
	text-shadow: 1px 1px darkblue;
	background-color: rgba(60,0,120,0.6);
	border-radius: 20px;
	padding: 5px 20px 8px;
}

.searches {
	text-align: center;
	float: right;
	padding: 8% 10% 0% 0%;
}

.psb {
	background-color: rgba(60,0,120,0.8);
	border-radius: 10px;
	width: 120%;
	height: 150%;
	padding-top: 6px;
	padding-bottom: 6px;
}

.psb * + * {
	margin-left: 8px;
}
.searches input[type=button] {
	text-decoration: none;
	font-family: serif;
	font-size: 1em;
	color: white;
	background: none;
	border: none;
	background-color: rgba(0,100,120,0.8);
	border-radius: 10px;
	text-shadow: 1px 1px darkblue;
	padding: 4px 16px;
}

input[type=button]:focus {
	background-color: rgba(0,190,220,0.8);
}

.searches input[type=text] {
	padding: 2px 5px ;
	font-family: serif;
	font-size: 0.8em;
	text-align: center;
	caret-color: rgba(0,0,0,0.2);
	border-radius: 5px;
	border: none;
	background-color: rgba(140,220,255,1);
	width: 10px;
	transition: ease-in-out, width .1s ease-in-out;
}

input[type=text]:focus {
	border: none;
	width: 100px;
}

*:focus {
	outline: none;
}