-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout_css.css
184 lines (180 loc) · 4.17 KB
/
about_css.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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
body{
font-family: sans-serif;
background-color: rgba(105, 202, 60, 0.589);
}
h1{
text-align: center;
color: rgb(25, 0, 255);
}
h1 i{
color: rgb(234, 0, 255);
}
.amitava h2,.samarpan h2{
text-align: center;
background-color: rgba(30, 210, 105, 0.527);
border-radius: 30px;
padding: 8px 8px;
color: rgb(204, 0, 255);
animation: coloring 10s linear infinite;
transition: 2s;
}
.menu{
margin-top: -30px;
}
.menu ul li{
display: inline;
background-color: rgba(255, 217, 0, 0.89);
font-size: 20px;
background-size: 30px;
margin-right: 50px;
padding: 10px 10px 10px 10px;
border-radius: 30px;
transition: 1s;
}
.menu ul li:hover{
background-color: hotpink;
transform: translate(-500px,100px);
box-shadow: 3px 3px 3px 3px rgba(256,256,256,0.8);
}
.menu ul a{
text-decoration: none;
transition: 2s;
}
.menu ul{
float: right;
margin-top: 60px;
}
@keyframes coloring{
25%{
color: tomato;
}
25%{
color: slateblue;
}
50%{
color: rgb(255, 145, 0);
}
25%{
color: rgb(0, 128, 128);
}
50%{
color: sienna;
}
}
.amitava h2 i,.samarpan h2 i{
color: rgb(255, 115, 1);
}
.amitava img,.samarpan img{
width: 400px;
height: 600px;
margin-left: 10px;
border-radius: 50px;
box-shadow: 5px 10px 10px rgba(228, 171, 15, 0.774);
border-top: 5px ridge rgb(70, 19, 209);
border-bottom: 5px ridge rgb(70, 19, 209);
}
.samarpan img{
height: 500px;
border-top: 5px ridge rgb(255, 187, 0);
border-bottom: 5px ridge rgb(255, 187, 0);
box-shadow: 5px 6px 10px rgba(168, 15, 228, 0.774);
}
.amitava span,.samarpan span{
width: 800px;
float: right;
margin-top: 15px;
margin-right: 60px;
text-align: justify;
line-height: 50px;
font-weight: bold;
background-color: rgba(190, 192, 59, 0.459);
padding: 15px 15px 15px 15px;
border-radius: 60px;
color: rgb(113, 27, 226);
animation: slider 4s linear infinite;
transition: 2s;
border-top: 8px ridge rgb(95, 26, 223);
border-bottom: 8px ridge rgb(95, 26, 223);
border-left: 3px ridge rgb(250, 205, 3);
border-right: 3px ridge rgb(250, 205, 3);
}
.samarpan span{
line-height: 70px;
margin-top: 30px;
border-left: 3px ridge rgb(250, 3, 3);
border-right: 3px ridge rgb(250, 3, 147);
background-color: rgba(23, 230, 23, 0.459);
}
@keyframes slider{
50%{
transform: translate(50px,-20px);
background-color: rgba(190, 192, 59, 0.274);
color: rgba(29, 29, 196, 0.918);
}
30%{
transform: translate(-5px,-10px);
background-color: rgba(210, 223, 28, 0.171);
color: rgb(161, 35, 104);
}
}
fieldset{
margin: 20px 20px;
margin-top: 60px;
background-color: rgba(0, 89, 255, 0.8);
outline: none;
border-radius: 20px;
height: 300px;
margin-bottom: 20px;
margin-left: 8px;
border: 3px ridge rgb(255, 0, 0);
}
fieldset .links a{
text-decoration: none;
color: rgb(255, 145, 0);
font-weight: bold;
}
fieldset .links h2{
color: rgb(255, 0, 234);
}
fieldset .links img{
margin-left: 1090px;
margin-top: -100px;
}
fieldset .links a span{
color: rgb(18, 194, 18);
}
fieldset .pointing_links img{
color: darksalmon;
height: 100px;
margin-left: 50px;
animation: arrow 2s linear infinite;
transition: 1s;
}
@keyframes arrow{
50%{
transform: translate(0px,-90px);
}
}
fieldset .pointing_links .icons{
float: right;
margin-right: 30px;
}
fieldset .pointing_links .icons i{
margin-left: 40px;
}
.creation footer{
float: right;
margin-right: 40px;
margin-bottom: 10px;
margin-top: -8px;
font-weight: bold;
color: rgb(255, 0, 0);
}
.creation footer a{
text-decoration: none;
color: rgb(204, 0, 255);
}
.creation span{
margin-left: 30px;
font-weight: bold;
}