54 lines
1.4 KiB
CSS
54 lines
1.4 KiB
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
user-select: none !important;
|
|
-moz-user-select: none !important;
|
|
-khtml-user-select: none !important;
|
|
-webkit-user-select: none !important;
|
|
-webkit-touch-callout: none !important;
|
|
outline: none !important;
|
|
box-shadow: none !important;
|
|
}
|
|
body {
|
|
background: linear-gradient(to right, #ee9ca7, #ffdde1);
|
|
}
|
|
.desktop {
|
|
display: inline !important;
|
|
}
|
|
.mobile {
|
|
display: none !important;
|
|
}
|
|
.addrepo {
|
|
color: #feeef5 !important;
|
|
border: solid 1px #d2729e;
|
|
background: #f895c2;
|
|
background: -webkit-gradient(linear, left top, left bottom, from(#feb1d3), to(#f171ab));
|
|
background: -moz-linear-gradient(top, #feb1d3, #f171ab);
|
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#feb1d3', endColorstr='#f171ab');
|
|
zoom: 1;
|
|
vertical-align: baseline;
|
|
margin: 0 2px;
|
|
outline: none;
|
|
cursor: pointer;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
font: 14px/100% Arial, Helvetica, sans-serif;
|
|
padding: .5em 2em .55em;
|
|
text-shadow: 0 1px 1px rgba(0,0,0,.3);
|
|
-webkit-border-radius: .5em;
|
|
-moz-border-radius: .5em;
|
|
border-radius: .5em;
|
|
-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
|
|
-moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
|
|
box-shadow: 0 1px 2px rgba(0,0,0,.2);
|
|
margin-top: -10px;
|
|
width: 60%;
|
|
}
|
|
@media only screen and (max-width: 800px) {
|
|
.desktop {
|
|
display: none !important;
|
|
}
|
|
.mobile {
|
|
display: inline !important;
|
|
}
|
|
} |