summaryrefslogtreecommitdiff
path: root/style.css
blob: 284976f878abed553f316a33058351e8a6f043a4 (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
body {
	background: #000;
	color: #fff;
	font-family: sans-serif;
	margin: 0;
}

.wrapper {
	background-color: #717894;
	background-image: url("background.png");
	background-repeat: no-repeat;
	background-position: top center;
	margin: 0 auto;
	padding: 3em 8em;
	box-sizing: border-box;
	width: 100%;
	max-width: 960px;
	min-width: 600px;
	min-height: 100vh;
}

@keyframes hovering {
	from {top: 18%;}
	to {top: 28%;}
}

header {
	margin: 80px 0 120px 0;
}

header a {
	display: block;
	position: relative;
	width: 100%;
	padding-top: 25.641%;
	text-decoration: none;
}

header img {
	max-width: 100%;
	position: absolute;
}

header img[alt="2"] {
	z-index: 1;
	top: 0px;
}

header img[alt="Roflnauts"] {
	z-index: 2;
	animation-name: hovering;
	animation-duration: 3s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-timing-function: cubic-bezier(.40,0,.60,1.0);
}

section {
	margin: 0 0 60px 0;
}

section p {
	line-height: 1.4em;
}

#screenshots {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.screenshot {
	display: block;
	border: 2px solid #000;
	margin: 4px;
	padding: 2px;
	background-color: #fff;
}

.screenshot:hover {
	background-color: #ffdd2e;
}

.screenshot > img {
	display: block;
}

#downloads {
	color: #fc3800;
	text-align: center;
	padding: 0.5em 0;
}

#downloads:target {
	outline: #fe2e solid 4px;
	background: #fe23;
}

#downloads a:link, #downloads a:visited {
	color: #fc3800;
}

#downloads h2 {
	margin: 0;
}

a:link, a:visited {
	color: #fcb800;
}

a:hover, #downloads a:hover {
	color: #ffdd2e;
}

a:active, #downloads a:active {
	color: #fff;
}

footer {
	font-size: 76%;
	text-align: center;
}

footer p {
	margin: 0.2em 0;
}