-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.Css
145 lines (128 loc) · 2.52 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
*{
padding:0;
margin: 0;
box-sizing: border-box;
font-family: sans-serif;
}
body{
background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),url(/BACKIMG.jpg);
background-position: center;
background-size: cover;
}
.container{
position: relative;
width: 80%;
margin: auto;
height: 100vh;
}
.container nav{
display: flex;
justify-content: space-between;
align-items: center;
}
.container nav .logo {
width: 150px;
cursor: pointer;
margin-right: 40%;
}
.container nav ul li{
display: inline-block;
justify-content: space-between;
margin-right: 40px;
}
.container nav ul li:last-child{
margin: right 0;
}
.container nav ul li a{
text-decoration: none;
color: #fff;
font-size: 18px;
transition: 0.3s;
}
.container nav ul li a:hover{
color: #e7434b;
}
.content{
position: absolute;
size-adjust: 5;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.content .title h1{
color: rgba(82, 20, 20, 0.2);
background: url(FIRE.jpg);
-webkit-background-clip:text;
background-size: contain;
animation: FIRE 15s linear infinite;
display: flex;
padding: 40px;
width: 200%;
font-size: 60px;
padding-right: 20;
margin-right: 700px;
}
@keyframes FIRE{
0%{ background-position:left 0 top 25px;
}
50%{
background-position:left 130px top -35px;
}
100%{
background-position:left 250px top 0;
}
}
.container .title img{
width: 80px;
transform:rotate(20deg)
}/*
.container.text h4{
color: #c1c1c1;
font-size: 50px;
letter-spacing: 30px;
text-transform: capitalize;
margin-bottom: 30px;
}*/
.container .text .btn{
text-decoration: none;
color:#fff;
background-color: #ea1923;
padding: 15px 30px;
font-size: 20px;
border-radius: 1000px;
position:absolute;
top: 340px;
right: 400px;
width: 200px;
height: 60px;
border:3px solid WHITE;
}
.container .text .btn:hover{
background-color: #fff;
color: #ea1923;
}
.icons a{
text-decoration: none;
color: rgb(214, 116, 116);
}
.icons ion-icon{
margin-left: 7%;
color:white;
margin: right 40px;
font-size: 30px;
transition: .4s ease;
position: relative;
top: 180px;
right: 100px;
}
.icons ion-icon:hover{
color:rgb(197, 85, 44);
}
@media only screen and (max-width:800px){
.container{
width:400px;
}
.content{
flex-basis: 100%;
}
}