-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.css
More file actions
74 lines (68 loc) · 1.65 KB
/
about.css
File metadata and controls
74 lines (68 loc) · 1.65 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
body {
font-family: Arial, Helvetica, sans-serif;
background-image: url(https://media.istockphoto.com/vectors/communication-elearning-internet-network-as-knowledge-base-vector-id1059510610?k=20&m=1059510610&s=612x612&w=0&h=E3wbE9HsFSxUh6PcsCobIti-wfFrOD05jYHJl_a3yXQ=)
;
}
h1 {
text-align: center;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-size: 34px;
}
.row5 {
display: flex;
}
.flip-card {
background-color: transparent;
width: 300px;
height: 300px;
perspective: 1000px;
margin: 20px;
padding: 20px;
}
.flip-card-inner {
position: relative;
width: 100%;
height: 100%;
text-align: center;
transition: transform 0.6s;
transform-style: preserve-3d;
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}
.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;
}
.flip-card-front {
background-color: #bbb;
color: black;
}
.flip-card-back {
background-color: #afc5d4;
background-image: url(https://i.pinimg.com/originals/c4/a0/d5/c4a0d5129df4d9b791058aa76aa14aa4.jpg);
color: rgb(14, 12, 12);
transform: rotateY(180deg);
}
.description {
text-align: center;
font-size: larger;
}
.some {
display: flex;
justify-items: center;
}
.row5 {
display: flex;
flex-wrap: nowrap;
justify-content: center;
text-align: center;
}
.thumbnail {
display: flex;
flex-wrap: wrap;
}