-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
80 lines (72 loc) · 1.53 KB
/
style.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
body{
background-color:#c0c0c0;
font-family: 'Oxygen', sans-serif;
}
.flipcard{
margin-top:100px;
background-color:#5e5e5e;
width: 80%;
height: 50%;
position:absolute;
left: -9999px;
border-radius:5px;
-moz-transition: all 1s ease-in-out;
-o-transition: all 1s ease-in-out;
-webkit-transition: all 1s ease-in-out;
transition: all 1s ease-in-out;
}
:target{
left:20px;
}
.cardlink{
background-color:#545657;
padding:10px;
position:relative;
top:5px;
font-size:20px;
text-decoration:none;
color:#bbb;
border: solid 1px transparent;
margin-left:15px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-o-border-radius: 5px;
border-radius: 5px;
}
.flipcard::before{
content:"";
display:block;
position:absolute;
right:-10px;
width: 30px;
height:30px;
background-color:#5e5e5e;
z-index:-1;
}
.flipcard::after{
content:"";
display:block;
position:absolute;
right:-60px;
top:-10px;
border-left: 50px #5e5e5e solid;
border-top: 25px transparent solid;
border-bottom: 25px transparent solid;
background:transparent;
}
.flipcard li{
float:left;
margin-left:10px;
}
.flipcard a{
padding:5px;
text-decoration:none;
color:#bbb;
font-size:20px;
}
.flipcard a:hover{
background-color:#505050;
}
.flipcard a:active{
background-color:#404040;
}