eCDP-Serial-Code/Web Service/ecdp.css

77 lines
1.4 KiB
CSS
Raw Permalink Normal View History

2020-11-27 07:56:42 +00:00
body{
2021-08-19 14:23:34 +00:00
background-color: black;
2021-08-19 15:12:14 +00:00
background-image: linear-gradient(to bottom, rgba(255, 0, 0, 0.70), rgba(0, 0, 0, 0.70)),url('bg.gif');
2020-11-27 07:56:42 +00:00
background-repeat: repeat;
2020-11-27 12:09:06 +00:00
text-align:center;
2020-11-27 07:56:42 +00:00
}
.keygen{
display: inline-block;
2020-11-27 12:09:06 +00:00
top: 15%;
2020-11-27 07:56:42 +00:00
2020-11-27 12:09:06 +00:00
position: relative;
2020-11-27 07:56:42 +00:00
padding:20px;
width:50%;
text-align:center;
2021-08-19 14:30:37 +00:00
background-image: linear-gradient(#00e000, green);
2020-11-27 07:56:42 +00:00
color: white;
2021-08-19 14:23:34 +00:00
border-radius: 5px;
2021-08-19 15:12:14 +00:00
animation: scroll 50s infinite linear;
2020-11-27 07:56:42 +00:00
}
2021-08-19 15:12:14 +00:00
2020-11-27 07:56:42 +00:00
.macAddr{
width: 60px;
padding: 12px 20px;
margin: 8px 0;
border-radius: 100%;
2021-08-19 14:23:34 +00:00
background-image: linear-gradient(black, #2a2a2b);
2020-11-27 07:56:42 +00:00
color:white;
}
.button{
width: 60%;
margin-top:50px;
padding:12px;
border-radius: 4px;
2021-08-19 14:23:34 +00:00
background-image: linear-gradient(yellow, #ad9f02);
2021-08-19 15:12:14 +00:00
color: black;
2021-08-19 14:23:34 +00:00
}
.dice{
width: 40px;
height: 40px;
border: 0px;
float: right;
background: url(dice.gif);
background-size:cover;
cursor: default;
}
.dice:hover{
background: url(dice-hover.gif);
background-size:cover;
cursor: pointer;
}
.dice:active{
background: url(dice-click.gif);
background-size:cover;
cursor: pointer;
2020-11-27 07:56:42 +00:00
}
.entry{
2021-08-19 14:23:34 +00:00
width: 56%;
padding-top:12px;
padding-bottom:12px;
padding-left:12px;
2020-11-27 07:56:42 +00:00
border-radius: 4px;
2021-08-19 14:23:34 +00:00
background-image: linear-gradient(black, #2a2a2b);
2020-11-27 07:56:42 +00:00
color:white;
}
.leaveOffering{
text-align:center;
width:100%;
padding: 20px;
color: white;
font-size: 140%;
font-weight: bold;
}
.askRonald{
float:left;
padding-right: 3%;
}