-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserie.css
More file actions
85 lines (76 loc) · 1.45 KB
/
serie.css
File metadata and controls
85 lines (76 loc) · 1.45 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
.context{
padding:30px;
width:90%;
border-radius:20px;
margin-right:5%;
background-color:rgb(0, 115, 153,0.8);
font-family:Calibri;
margin-left:2%;
}
.info-box{
background-color:#ccccff;
float:right;
padding:20px;
width:40%;
height:120%;
border-radius:20px;
border-style:solid;
font-size:18px;
}
.context li{
font-size:18px;
}
.context li:hover{
background-color:#00cc00;
}
.flip-card {
background-color: transparent;
width: 200px;
height: 180px;
perspective: 1000px;
display:inline-block;
margin:5px;
}
.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%;
backface-visibility: hidden;
}
.flip-card-front {
background-color: #bbb;
color: black;
}
.flip-card-back {
background-color: #1D5C86;
color: white;
transform: rotateY(180deg);
}
.flip-card img{
width:200px;
height:180px;
}
.column {
float: left;
width: 45%;
padding: 10px;
height: 300px; /* Should be removed. Only for demonstration */
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}