-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
133 lines (127 loc) · 2.38 KB
/
style.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Josefin Sans', sans-serif;
color: blanchedalmond;
}
header{
width: 100%;
height:100vh;
background-color: white;
background-image: url(./image.jpg);
background-size: 100%;
background-repeat: no-repeat;
background-position: center;
}
nav{
width: 100%;
height:15vh;
background-color:rgba(0,0,0, 0.75);
/* color: blanchedalmond; */
display: flex;
justify-content: space-between;
align-items: center;
text-transform: uppercase;
}
nav .logo{
width: 25%;
text-align: center;
}
nav .menu{
width: 40%;
display: flex;
justify-content: space-around;
align-items: center;
text-transform: uppercase;
}
nav .menu a{
width: 25%;
text-decoration:none ;
font-weight: bold;
/* color: blanchedalmond; */
}
nav .menu a:first-child{
color:darkgoldenrod;
}
main{
width: 100%;
height: 85vh;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
p{
color:rgba(184,134,11,0.6);
}
section h3{
font-size: 35px;
font-size: 200;
letter-spacing: 3px;
text-shadow: 1px 1px 2px black;
}
section h1{
margin: 30px 0 20px 0;
font-size: 55px;
font-weight: 700;
text-shadow: 2px 1px 5px black;
text-transform: uppercase;
}
section p{
font-size: 25px;
word-spacing: 2px;
margin-bottom: 25px;
text-shadow: 1px 1px 1px black;
}
section a{
padding: 12px 30px;
border-radius: 4px;
outline: none;
text-transform: uppercase;
font-size: 13px;
font-weight: 500;
text-decoration: none;
letter-spacing: 1px;
transition: all 0.5s ease;
}
section .btnone{
background-color: rgba(0,0,0, 0.75) ;
}
section .btntwo{
background-color: blanchedalmond;
color: #000;
}
.change_content:after{
content: "";
animation: changetext 6s infinite linear;
color:darkgoldenrod;
}
@keyframes changetext {
0%{
content:"The Math";
}
20%{
content:"The Zoo";
}
40%{
content: "Ambedkar Park";
}
60%{
content: "Lakefront";
}
80%{
content: "Water-Park";
}
100%{
content: "Nauka Vihar";
}
}
.btnone:hover{
background-color: blanchedalmond;
color:#000;
}
.btntwo:hover{
background-color:rgba(0,0,0, 0.75) ;
color: blanchedalmond;
}