mirror of
https://github.com/amyinspace/MagicSetEditor2.git
synced 2026-06-10 13:06:59 -04:00
dc02f4c507
git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@674 0fc631ac-6414-0410-93d0-97cfa31319b6
101 lines
1.5 KiB
CSS
101 lines
1.5 KiB
CSS
.set-symbol {
|
|
float: right;
|
|
margin-right: .5em;
|
|
}
|
|
|
|
ul {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
.card {
|
|
clear: left;
|
|
margin-top: 1em;
|
|
}
|
|
|
|
.card span {
|
|
display: block;
|
|
}
|
|
|
|
.card .full_name {
|
|
font-weight: bold;
|
|
display: inline;
|
|
font-family: "Percolator Expert";
|
|
font-size: larger;
|
|
}
|
|
.card .cost {
|
|
display: inline;
|
|
font-family: "Eurostile", "Eurostile";
|
|
font-size: larger;
|
|
margin-left: .5em;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.card .flavor-text {
|
|
font-style: italic;
|
|
}
|
|
.card .number_line {
|
|
color: rgb(128,128,128);
|
|
font-size: smaller;
|
|
}
|
|
|
|
|
|
.with-previews .card {
|
|
margin-top: 1.1em;
|
|
min-height: 100px;
|
|
margin-left: 90px;
|
|
position: relative;
|
|
}
|
|
.card .card-image {
|
|
height: 100px;
|
|
position: absolute;
|
|
left: -85px;
|
|
top: 3px;
|
|
border: none;
|
|
}
|
|
.card .image {
|
|
display: block;
|
|
border: none;
|
|
}
|
|
|
|
span.symbol {
|
|
display: inline;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.fullcard {
|
|
float: left;
|
|
}
|
|
h2 {
|
|
clear: both;
|
|
}
|
|
|
|
/* image preview */
|
|
#preview-bg {
|
|
background-color: rgb(0,0,0);
|
|
width: 100%;
|
|
height: 100%;
|
|
cursor: pointer;
|
|
position: absolute;
|
|
opacity: 0.7;
|
|
-moz-opacity: 0.7;
|
|
filter: alpha(opacity=70);
|
|
}
|
|
#preview-img {
|
|
background-position: 50% 50%;
|
|
background-repeat: no-repeat;
|
|
width: 100%;
|
|
height: 100%;
|
|
cursor: pointer;
|
|
position: absolute;
|
|
}
|
|
#preview {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
* html #preview {
|
|
position: absolute;
|
|
} |