-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutus.css
115 lines (108 loc) · 2.51 KB
/
aboutus.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
*{
font-family: Georgia, 'Times New Roman', Times, serif;
font-family: 'Baloo Bhaijaan 2', cursive;
}
.logo{
position: relative;
}
.heading{
position: relative;
top: -130px;
text-align: center;
}
.ULNavBar{
display: inline;
float: left;
overflow: auto;
width:19%;
/* height: 50px; */
}
.navbar{
overflow: auto;
/* width: max-content; */
}
.navbar a{
display: block;
/* background-color: #0088CC; */
background-color: rgb(44,52,57);
color: white;
text-align: center;
padding: 14px;
text-decoration: none;
font-size: 17px;
}
.navbar a.active{
background-color: #04AA6D;
color: white ;
}
.card1 {
text-align:center;
position: absolute;
left: 100px;
width: 250px;
height: 350px;
margin-top: 10px;
margin-bottom: 10px;
background: linear-gradient(rgb(225,150,58),rgb(227,144,91));
transition:.6s;
transform: rotatex(75deg) translatey(-200px) translatez(-100px);
box-shadow: 0px 20px 60px rgba(0,0,0, 0.5);
}
.card1:hover{
transform: rotatex(0deg);
transform: rotatez(0deg);
transition:.6s;
box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
}
.card1 img{
transform: translateY(15px);
width:200px;
height:120px;
}
.card2 {
text-align:center;
position: absolute;
left: 550px;
width: 250px;
height: 350px;
margin-top: 10px;
margin-bottom: 10px;
background: linear-gradient(rgb(93,94,170),rgb(93,66,103));
animation: animate 1s linear infinite;
transition:.6s;
transform: rotatex(75deg) translatey(-200px) translatez(-100px);
box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.5);
}
.card2:hover{
transform: rotatex(0deg);
transition:.6s;
box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
}
.card2 img{
transform: translateY(15px);
width:180px;
height:150px;
}
.card3 {
text-align:center;
position: absolute;
left: 1000px;
width: 250px;
height: 350px;
margin-top: 10px;
margin-bottom: 10px;
background: linear-gradient(#ff5252, #b33939);
transition:.6s;
transform: rotatex(75deg) translatey(-200px) translatez(-100px);
box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.5);
}
.footer
{
/* border: 2px solid red; */
justify-content: center;
text-align: center;
background-color: black;
color: white;
padding: 3px 10px;
border-radius: 5px;
}