aboutsummaryrefslogtreecommitdiff
path: root/static/main.css
blob: b7aae9744dbc8371c0d7adecf77184512933c4a6 (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
127
128
129
130
131
132
133
134
135
136
137
138
139
body {
    margin: 0;
    font-family: sans-serif;
}

a {
    text-decoration: none;
		color: #800000;
}

a:hover {
    text-decoration: underline;
}

.logo {
    display: block;
    max-width:230px;
    max-height:75px;
}

.title {
	align-items: center;
	display: flex;
	flex-direction: column;
    display: flex;
    max-width: 120ch;
}

.description {
    margin-top: -1rem;
    max-width: 100ch;
}

.title .logo {
  padding-top: 15px;
}

.title>div>:first-child {
  margin-top: 0;
}
.title>div>:last-child {
  margin-bottom: 0;
}

.header .links {
	display: flex;
	flex-direction: row;
	justify-content: center;
}
.header .links>* {
	margin: .5em 1em;
}

body {
	display: flex;
	flex-direction: column;
	/*background: linear-gradient(to bottom, #cc2020, #cc4040);*/ /* red */
	background: linear-gradient(to bottom, #101070, #101040); /* blue */
	box-sizing: border-box;
	min-height: 100vh;
}
.header {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 1em;
}
.content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding-top: 1.5em;
	margin-top: 3px;
}
.content>p::before {
	content: '\1f6c8';
	display: block;
	position: absolute;
	margin-left: -1.3em;
}
.content>p {
	border: 1px solid #ccc;
	background: white;
	padding: .5em;
	padding-left: 2.1em;
}
body>* {
	padding: 0 .8em;
	box-sizing: border-box;
	background-color: rgba(255, 255, 255, .8);
}

.nav {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
}
.nav .nav-item {
	margin: 0 .5em;
}

@media (min-width: 600px) {
	body {
		padding: 7vh 0;
		align-items: center;
	}
	body>*:first-child {
		border-top-left-radius: 0;
		border-top-right-radius: 0;
	}
	body>*:last-child {
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
	}
	body>* {
		/*box-shadow: 0 0 10px #ccc;*/
		/*border: 1px solid #ccc;*/
		width: 80%;
		max-width: 800px;
	}
	.title {
		flex-direction: row;
	}	
	.header {
		flex-direction: row;
	}
	.header .links {
	  justify-content: center;
		flex-direction: column;
	}
	.header .links>* {
	  margin: .1em 0;
	}
	.title .logo {
		padding-top: 0;
    padding-right: 15px;
	}
}