-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
78 lines (68 loc) · 1.33 KB
/
styles.css
File metadata and controls
78 lines (68 loc) · 1.33 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
.hello
{
background-color: black;
}
.team{
background: url("assets/bg.jpg");
width: 10%;
width: 100%;
margin: 0%;
margin: 0%;
padding: 10%;
padding-left: 40%;
color: rgb(155, 155, 82);
font-family: 'Fjalla One', sans-serif;
font-size: 370%;
}
.cading
{
padding-top: 5%;
padding-bottom: 5%;
height: max-content;
}
.flip-card {
background-color: transparent;
width: 300px;
height: 200px;
border: 1px solid #0a0a0a;
perspective: 1000px;
}
.flip-card-inner {
position: relative;
width: 100%;
height: 100%;
text-align: center;
transition: transform 0.8s;
transform-style: preserve-3d;
}
.flip-card:hover .flip-card-inner {
transform: rotateY(180deg);
}
.flip-card-front, .flip-card-back {
position: absolute;
width: 100%;
height: 100%;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
/* Style the front side (fallback if image is missing) */
.flip-card-front {
background-color: #bbb;
color: black;
}
/* Style the back side */
.flip-card-back {
background-color: dodgerblue;
color: white;
transform: rotateY(180deg);
}
.faculty
{
padding-top: 4%;
color: cornsilk;
background-color: darkkhaki;
text-align:center ;
}
card:hover {
background-color: yellow;
}