-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
137 lines (108 loc) · 1.95 KB
/
index.css
File metadata and controls
137 lines (108 loc) · 1.95 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
*{
margin: none;
padding: none;
font-family: serif;
background-color: rgb(41, 38, 38);
color: white;
}
body{
border: 1px solid;
border-radius: 50px;
border-color: black;
}
/*.new{
display: flex;
flex-direction:ltr;
flex-grow: inherit;
align-items: center;
gap: 100px;
border-radius: 40px;
border:3px solid;
} */
.logo{
padding-left:20px ;
padding-right:20px ;
font-size:20px;
margin-left: 40px;
padding: none;
}
#bod{
display: flex;
flex-direction:ltr;
align-items:center;
gap: 100px;
}
.logo h1{
color: red;
font-family: Arial black;
text-shadow: 7px 0px 0px rgb(20, 7, 7);
padding: none;
animation-name:myanim;
animation-duration: 2s;
animation-iteration-count: infinite;
}
@keyframes myanim{
0%{
color:aqua;
};
20%{
color:rgb(255, 251, 5);
};
50%{
color:rgb(255, 255, 255);
};
70%{
color:rgb(226, 43, 59);
};
90%{
color:rgb(65, 17, 179);
};
}
.logo h1 span{
font-size: 80%;
}
.Menu{
display:flex;
flex-direction: row;
align-items: center;
gap: 30px;
}
.Menu:hover{
color: red;
transition-duration: 0.5s;
box-shadow: 7px 5px 5px black ;
}
.Menu a{
font-size:16px;
font-family: arial;
text-decoration: none;
box-shadow: 7px 2px 5px black;
border-radius: 30px;
margin-left: 20px;
}
.Menu a:hover{
color:red;
transition-duration:0.5s;
}
.content_1{
display: flex;
flex-direction: row;
margin-top: 70px;
gap:100px;
justify-content: inherit;
}
@font-face {
font-family: "Trickster";
src:url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css")
}
.content_1 p{
/* border: 3px solid; */
margin-left: 60px;
margin-top: 0px;
text-align: justify;
padding: 10px 10px 10px 10px;
font-size: 13px;
box-shadow: 2px 3px 8px black;
border-radius: 30px;
font-family: "Trickster",cursive;
}