-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.css
More file actions
78 lines (67 loc) · 1.06 KB
/
index.css
File metadata and controls
78 lines (67 loc) · 1.06 KB
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
body {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
height: 100vh;
background: url(background.jpg) repeat repeat fixed;
background-size: cover;
}
* {
font-family: sans-serif;
box-sizing: border-box;
}
.FlashyTitle0 {
animation: colorAnimation0 2s ease-in-out infinite;
}
.FlashyTitle1 {
animation: colorAnimation1 2s ease-in-out infinite;
}
.Image {
display: inline-block;
height: 400px;
border-radius: 20px;
box-shadow: 5px 5px 10px 5px rgba(0,0,0,.5);
}
#title {
font-size: 50px;
color: white;
padding: 50px;
border-radius: 5px;
background: #2f2f2f;
box-shadow: 5px 5px 10px 5px rgba(0,0,0,.5);
}
#imageOfSami {
border: 10px solid gold;
}
#imageOfJulius {
border: 10px solid cyan;
}
@keyframes colorAnimation0 {
0% {
color: green;
}
30% {
color: gold;
}
60% {
color: blue;
}
100% {
color: green;
}
}
@keyframes colorAnimation1 {
0% {
color: purple;
}
30% {
color: orange;
}
60% {
color: cyan;
}
100% {
color: purple;
}
}