aboutsummaryrefslogtreecommitdiffstats
path: root/jsaccess/jsa/jsa.css
blob: 597638c0a3964a619621617a3c8380b6c6a41753 (plain) (blame)
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
body {
	font-family: monospace;
	background-color:#080808;
	color:#dfdfdf;
}

h1 {
	margin-top: 40px;
	margin-bottom: 60px;
	text-align: center;
}

a {text-decoration: none; color:#9f9f9f;}
a:hover {text-decoration: underline overline; color: red;}

input {
	vertical-align: bottom;
	margin-right: 10px;
}

#content {
	margin-left: auto;
	margin-right: auto;
	width: 70%;
}

#forms {
	display: inline;
	float: left;
	width: 50%;
}

#status {
	display: inline;
	width: 50%;
	color:#5fba3d;
	margin-top: 20px;
}
#status:before {
	content: "Welcome.";
}

#footer {
	position: absolute;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	bottom: 0;
	left: 0;
	color: #9f9f9f;
}

#footer small {
	display: block;
	text-align: center;
}

@media (max-width: 480px) {
	#content {
		display: block;
		width: 100%;
	}
	#forms {
		display: block;
		width: 100%;
	}
	#status {
		display: block;
		width: 100%;
	}
}