This repository has been archived by the owner on Jul 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
156 lines (138 loc) · 3.23 KB
/
index.css
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital@1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Modak&display=swap');
body{
background-image: url("bg.png");
background-color: black;
background-size: 100%;
background-repeat: no-repeat;
color: white;
}
/* .footer p{
font-size: 30px;
font-weight: 800;
color: #8ebf42;
font-family: sans-serif;
} */
.nav{
border: 3px solid green;
list-style-type: none;
position: absolute;
top : 0%;
left: 0%;
right: 0%;
margin: 0px;
padding: 0px;
overflow: hidden;
background-color: #333;
}
.nav:hover{
border: 3px solid lightblue;
}
.nav li {float: left;}
.nav li a{
display: block;
color: white;
text-align: center;
font-family: 'Bebas Neue', cursive;
padding-left: 14px;
margin: 15px;
text-decoration: none;
}
.nav li:hover{
float: left;
background-color: blue;
}
.intro{
background-repeat: no-repeat;
height: 500px;
width: 100%;
transition: 0.3s;
font-size: 20px;
border: blue;
}
/* font-family: 'Modak', cursive; */
.intro p{
font-size: 30px;
font-family: 'Bebas Neue', cursive;
text-align: center;
color : blue;
animation: mymove 5s infinite;
animation-iteration-count: infinite;
animation-timing-function:ease-out;
animation-direction: alternate;
position: relative;
top : 50%;
bottom: 80%;
}
#hek{
font-size: 30px;
font-family: 'Bebas Neue', cursive;
text-align: center;
color : red;
animation: mymve 5s infinite;
animation-timing-function:ease-out;
animation-iteration-count: infinite;
animation-direction: alternate;
position: relative;
top : 50%;
bottom: 80%;
}
.about{
margin-left: 80px;
margin-right: 80px;
font-size: 20px;
padding: 10px;
font-family: 'Roboto Condensed', sans-serif;
font-weight: bolder;
text-align: center;
color: #fffdd0;
background-color: black;
opacity: 0.9;
color: blue;
border-style: solid;
border-color : red;
border-radius: 20px;
animation: about 5s infinite;
animation-direction: alternate;
}
.about:hover{
/* background: #fffdd0; */
animation: border 5s infinite;
transform: scale(1.0, 1.0);
border : 5px solid blue;
border-radius: 1px;
animation-direction: alternate;
}
@keyframes border {
0%, 10% {border-color: red; color:red ; border-radius: 15px}
50%,60% {border-color: gold;color:gold; border-radius: 9px}
}
@keyframes about {
0%, 25% {color:red ; border-radius: 20px; border-color : red;}
50% {color:silver; border-radius: 9px; border-color : silver;}
75%, 100% {color:gold; border-radius: 9px; border-color : gold;}
}
@keyframes mymove {
0%{color:blue;}
50% {color:yellow;}
100% {color:red;}
}
@keyframes mymve {
0%{color:red;}
50% {color:yellow;}
100% {color:blue;}
}
}
.about h2{
font-family: Brush Script MT;
}
footer {
font-family: 'Roboto Thin';
text-align: center;
background-attachment: scroll;
background-position: 0% 0%;
position: fixed;
bottom: 0pt;
color: #ff7a7a;
}