-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.css
More file actions
129 lines (115 loc) · 2.53 KB
/
theme.css
File metadata and controls
129 lines (115 loc) · 2.53 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
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
html {
background: url(images/back_3.png) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
body {
margin: 0;
overflow-x: hidden;
}
p {
position: relative;
text-align: center;
font-size: 150px;
font-family: "DK Magical Brush";
margin: 0;
background: rgb(255,255,255);
background: -moz-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(232,234,236,0.5) 100%);
background: -webkit-linear-gradient(left, rgba(255,255,255,1) 0%,rgba(232,234,236,0.5) 100%);
background: linear-gradient(to right, rgba(255,255,255,1) 0%,rgba(232,234,236,0.5) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#18314F', endColorstr='#13243E',GradientType=1 );
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
@font-face {
font-family: "DK Magical Brush";
src: url("fonts/DK Magical Brush.otf");
}
@keyframes moveSquare {
0% { top: 100px; }
100% { top: 0px; }
}
@-webkit-keyframes moveSquare {
0% { top: 100px; }
100% { top: 0px; }
}
@keyframes moveNey {
0% { top: 100px; }
100% { top: 0px; }
}
@-webkit-keyframes moveNey {
0% { top: 100px; }
100% { top: 0px; }
}
@keyframes movePog {
0% { top: 100px; }
100% { top: 0px; }
}
@-webkit-keyframes movePog {
0% { top: 100px; }
100% { top: 0px; }
}
#stars {
}
.floating_stars{
vertical-align: middle;
display: table-cell;
position: absolute;
top: 0px;
right: calc(50% - 625px);
right:-webkit-calc(50% - 625px);
right:-moz-calc(50% - 625px);
right:-o-calc(50% - 625px);
}
@media screen and (max-width: 400px){
.floating_stars {
width: 400px;
height: auto;
vertical-align: middle;
display: table-cell;
position: absolute;
top: 0px;
left: 0px;
}
p {
font-size: 70px;
margin-top: 0px;
}
.title {
margin-top: 100px;
}
}
@media screen and (min-width: 401px){
.title{
margin-top: 250px;
}
}
#messi {
animation: moveSquare 1s;
-webkit-animation: moveSquare 1s; /* Safari and Chrome */
}
#ron {
animation: moveSquare 2s;
-webkit-animation: moveSquare 2s; /* Safari and Chrome */
}
#ney {
animation: moveNey 1.5s;
-webkit-animation: moveNey 1.5s; /* Safari and Chrome */
}
#pogba {
animation: movePog 1.5s;
-webkit-animation: movePog 1.5s; /* Safari and Chrome */
}
p {
font-family: 'DK Magical Brush', cursive;
}
#logo {
width: 20%;
height: 20%;
display: block;
margin: 0 auto;
}
#back_image{
}