forked from ChainSafe/game-web3wallet
-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
61 lines (53 loc) · 910 Bytes
/
styles.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
* {
font-family: Euclid, sans-serif;
}
.center {
display: block;
text-decoration: none;
text-align: center;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
#logo {
max-width: 125px;
max-height: 125px;
margin: 15px auto;
}
#logo img {
height: 100%;
width: 100%;
}
#response-text {
transition-duration: 200ms;
opacity: 0;
visibility: hidden;
}
#response-text.active {
opacity: 1;
visibility: visible;
}
#response-button {
border: none;
transition-duration: 200ms;
opacity: 0;
visibility: hidden;
background-color: white;
border: 1px solid #037dd6;
font-weight: bold;
color: #037dd6;
border-radius: 100px;
margin: 10px;
margin-top: 21px;
height: 45px;
width: 170px;
}
#response-button.active {
opacity: 1;
visibility: visible;
}
#response-button:hover {
cursor: pointer;
box-shadow: lightgray 0px 0px 10px;
}