-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
119 lines (104 loc) · 2 KB
/
stylesheet.css
File metadata and controls
119 lines (104 loc) · 2 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
.Activity {
position: relative;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}
.Activity .card {
position: relative;
max-width: 350px;
height: 220px;
background: #fff;
margin: 30px 10px;
padding: 20px 15px;
display: flex;
flex-direction: column;
box-shadow: 0 5px 15px rgb(250, 150, 18);
transition: 0.3s ease-in-out;
}
.Activity .card:hover {
height: 420px;
}
.Activity .card .imgBx {
position: relative;
width: fit-content;
height: fit-content;
z-index: 1;
top: -40px;
}
.Activity .card .imgBx img {
max-width: 100%;
border-radius: 7px;
}
.Activity .card .content {
position: relative;
margin-top: -10px;
padding: 10px 15px;
text-align: center;
color: rgb(173, 25, 25);
visibility: hidden;
opacity: 0;
transition: 0.3s ease-in-out;
}
.Activity .card:hover .content {
visibility: visible;
opacity: 1;
margin-top: -40px;
transition-delay: 0.3s;
}
.MainImage {
width: 100%;
height: 18cm;
}
.page-footer i {
margin: 0.3cm;
margin-top: 00.2cm;
}
footer {
margin-top: 1cm;
}
.ModeOfClasses {
position: relative;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}
.ModeOfClasses .card {
position: relative;
max-width: 700px;
min-height: 320px;
margin: 30px 25px;
padding: 20px 15px;
display: flex;
flex-direction: column;
border-radius: 1cm;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.103);
}
.float {
position: fixed;
width: 150px;
height: 60px;
bottom: 40px;
right: 40px;
z-index: 1;
justify-content: center;
background-color: rgb(37, 0, 204);
color: #FFF;
border-radius: 50px;
text-align: center;
box-shadow: 4px 4px 5px rgb(154, 153, 158);
}
.float i {
margin-top: 22px;
margin-right: 10px;
}
.float h5 {
margin-top: 22px;
}
.float:hover {
color: rgb(205, 50, 50);
}