-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathecdp.css
More file actions
84 lines (81 loc) · 1.48 KB
/
ecdp.css
File metadata and controls
84 lines (81 loc) · 1.48 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
body{
background-color: black;
background-image: linear-gradient(to bottom, rgba(255, 0, 0, 0.70), rgba(0, 0, 0, 0.70)),url('/img/bg.gif');
background-repeat: repeat;
text-align:center;
height: 100%;
}
.keygen{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
padding:20px;
width:50%;
text-align:center;
background-image: linear-gradient(#00e000, green);
color: white;
border-radius: 5px;
animation: scroll 50s infinite linear;
}
@media only screen and (min-width: 500px) {
.keygen {
width: 90%
}
}
.macAddr{
width: 60px;
padding: 12px 20px;
margin: 8px 0;
border-radius: 100%;
background-image: linear-gradient(black, #2a2a2b);
color:white;
}
.button{
width: 60%;
margin-top:50px;
padding:12px;
border-radius: 4px;
background-image: linear-gradient(yellow, #ad9f02);
color: black;
}
.dice{
width: 40px;
height: 40px;
border: 0px;
float: right;
background: url(/img/dice.gif);
background-size:cover;
cursor: default;
}
.dice:hover{
background: url(/img/dice-hover.gif);
background-size:cover;
cursor: pointer;
}
.dice:active{
background: url(/img/dice-click.gif);
background-size:cover;
cursor: pointer;
}
.entry{
width: 56%;
padding-top:12px;
padding-bottom:12px;
padding-left:12px;
border-radius: 4px;
background-image: linear-gradient(black, #2a2a2b);
color:white;
}
.leaveOffering{
text-align:center;
width:100%;
padding: 20px;
color: white;
font-size: 140%;
font-weight: bold;
}
.askRonald{
float:left;
padding-right: 3%;
}