aboutsummaryrefslogtreecommitdiff
path: root/app/static/css/page.scss
blob: dc25df3ef87e1229db4dcb5ff953789d52eb1b75 (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
* {
	box-sizing: border-box;
	font-family: Georgia;
}

html, body {
	margin: 0;
	padding: 0;
}

body {
	margin-top: 50px;
	overflow-y: scroll;
}

.container {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
}

.header h1, .header p {
	display: inline;
}

.nav {
	list-style-type: none;
	padding: 0;

	li {
		display: inline;
		padding: 5px 10px;
	}
}

.demo {
	background-color: #CCC;
	padding: 2px 10px;
	margin-top: 10px;
	margin-bottom: 10px;
}

.inp {
	margin-top: 10px;

	textarea, .inp input[type="submit"] {
		width: 100%;
		border-radius: 4px;
	}

	textarea {
		border: 3px solid #CCC;
		border-radius: 4px;
		min-height: 150px;
		padding: 5px 7px;
		box-sizing: border-box;
		background-color: #f8f8f8;
		resize: vertical;

		transition: border 0.2s ease-in-out;
	}
	textarea:focus {
		border: 3px solid #555;
	}

	input[type="submit"] {
		width: 100%;
		background-color: #777;
		border: 2px solid #555;
		border-radius: 4px;
		color: white;
		padding: 4px 4px;
		text-decoration: none;
		margin-top: 5px;
		cursor: pointer;
	}
}

a, a:visited, a:hover, a:active {
	color: #707070;
	text-decoration: none;
}
a:hover {
	color: #505050;
}
a:active {
	color: #202020;
}