-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
144 lines (126 loc) · 2.1 KB
/
index.css
File metadata and controls
144 lines (126 loc) · 2.1 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
130
131
132
133
134
135
136
137
138
139
.iconMusic{
width:60px;
height:60px;
user-select: none;
}
.titleImage{
text-align: center;
border-radius: 50%;
overflow: hidden;
size: 55px;
width:155px;
height:155px;
transition :all 3000000s;
user-select: none;
}
.round{
text-align: center;
user-select: none;
}
.round:hover .titleImage{
transform: rotate(360000000deg);
}
.backgroundImage{
position: fixed;
top:0;
left:0;
width:100%;
height:100%;
z-index: -100;
background-color: #fff;
opacity: 55%;
user-select: none;
}
@media screen and (orientation: portrait) {
.backgroundImage {
background-image: url(img/background4.jpg);
background-repeat: no-repeat;
background-size: cover;
}
}
@media screen and (orientation: landscape) {
.backgroundImage {
background-image: url(img/background1.jpg);
background-repeat: no-repeat;
background-size: cover;
}
}
.textLink1{
text-align:center;
position: absolute;
border:3px solid #7d06dd;
border-radius: 30px;
user-select: none;
}
@media screen and (max-width: 500px){
.textLink1{
margin-top: 5%;
font-size:25px;
font-weight:800;
width: 40%;
left: 30%;
height:6%;
}
}
@media screen and (min-width: 500px){
.textLink1{
margin-top: 2%;
font-size:40px;
font-weight:300;
width: 20%;
left:40%;
height:9%;
}
}
.textLink2{
text-align:center;
position: absolute;
border:3px solid #7d06dd;
border-radius: 30px;
width: 20%;
height:9%;
font-size:40px;
font-weight:300;
user-select: none;
}
@media screen and (max-width: 500px){
.textLink2{
margin-top: 25%;
font-size:25px;
width: 40%;
font-weight:800;
left: 30%;
height:6%;
}
}
@media screen and (min-width: 500px){
.textLink2{
margin-top: 10%;
font-size:40px;
font-weight:300;
width: 20%;
left:40%;
height:9%;
}
}
.somethingBehind{
font-size: 10px;
font-weight: 200;
display: table-cell;
vertical-align: bottom;
}
#titleName{
text-align: center;
font-size: 55px;
animation:change 10s linear 0s infinite;
font-weight:700;
user-select: none;
}
@keyframes change
{
0% {color:#c915d5;}
25%{color:#6198ff;}
50%{color:#74dfbf;}
75%{color:#93acff;}
100% {color:#ad4fff;}
}