summaryrefslogtreecommitdiff
path: root/style.css
blob: db4309c15303cd71b3a237e119df202be489f2c4 (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
body{
	display: flex;
	background: url(img/bg.jpg) no-repeat fixed;
	background-size: cover;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}

body.index{
	height: 97vh;
}

.content{
	/*margin-left: 10%;
	margin-right: 10%;*/
	margin: auto;
	border-radius: 8px;
	color: #ffffff;
}

ul{
	list-style-type: none;
	margin: 0;
	padding: 0;
}

a{
	text-decoration: none;
	color: inherit;
}

div.zikos:nth-child(odd){
	flex-direction: row-reverse;
	margin-right: 5%;
}
div.zikos:nth-child(odd) .desc{
	margin-right: 10px;
}

div.zikos:nth-child(even){	
	flex-direction: row;
	margin-left: 5%;
}
div.zikos:nth-child(even) .desc{
	margin-left: 10px;
}

.zikos{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	margin-bottom: 10px;
	padding: 10px;
	border: 3px inset #888888;
	border-radius: 3px;
	text-align: inherit;
	background-color: #00000099;
}

.zikos img{
	max-height: 40vh;
	border-radius: 3px;
}

.desc{
	max-width: 60vh;
}

.return{
	margin: auto;
	border-width: 3px;
	border-style: solid;
	border-radius: 7px;
	animation-name: return;
	animation-duration: 7s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

.footer{
	color: bisque;
}

.footer::before{
	content: "<";
}

.footer::after{
	content: ">";
}

@keyframes return{
	0%{
		border-color: #84008c;
		color: #84008c;
	}
	12.5%{
		border-color: #3f0098;
		color: #3f0098;
	}
	25%{
		border-color: #46bebc;
		color: #46bebc;
	}
	37.5%{
		border-color: #2f8a00;
		color: #2f8a00;
	}
	50%{
		border-color: #fdff00;
		color: #fdff00;
	}
	62.5%{
		border-color: #f48a00;
		color: #f48a00;
	}
	75%{
		border-color: #f00100;
		color: #f00100;
	}
	87.5%{
		border-color: #f366b1;
		color: #f366b1;
	}
	100%{
		border-color: #84008c;
		color: #84008c;
	}
}