-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.css
101 lines (88 loc) · 2.15 KB
/
index.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
body {
background-color: #000;
color: #a1a1a1;
color: #fedfff;
text-shadow: 0 0 1px #f94dff, 0 0 2px #f94dff, 0 0 3px #d040ec, 0 0 4px #d040ec, 0 0 5px #d040ec;
font-family: Arial, Helvetica, sans-serif;
font-size: 16px;
}
input, textarea, select {
background-color: #313131;
color: #d1d1d1;
color: #fff;
text-shadow: 0 0 1px #fedfff, 0 0 2px #f94dff, 0 0 3px #d040ec;
border: 2px solid #f94dff;
border-radius: 5px;
font-family: Arial, Helvetica, sans-serif;
font-size: 16px;
}
label {
white-space: nowrap;
}
button {
background-color: #d1d1d1;
color: #313131;
background-color: #000;
color: #fff;
text-shadow: 0 0 1px #f94dff, 0 0 2px #f94dff, 0 0 3px #d040ec, 0 0 4px #d040ec, 0 0 5px #d040ec;
border: 2px solid #f94dff;
border-radius: 15px;
font-family: Arial, Helvetica, sans-serif;
font-size: 26px;
font-weight: bolder;
}
#file {
color: #d1d1d1;
}
#message {
width: 600px;
}
#entropy {
width: 99%;
}
#salt {
width: 450px;
}
#start {
width: 200px;
height: 50px;
}
#mnemonic {
width: 99%;
font-size: 20px;
font-weight: bold;
font-family: Courier;
white-space: pre-wrap;
}
div.round {
border: 2px solid #f94dff;
border-radius: 15px;
padding: 5px;
margin-left: auto;
margin-right: auto;
}
h3 {
/*color: #d1d1d1;*/
color: #fff;
text-shadow: 0 0 2px #f94dff, 0 0 3px #f94dff, 0 0 4px #d040ec, 0 0 5px #d040ec, 0 0 6px #d040ec;
}
h1 {
font-family: Courier, Arial, Helvetica, sans-serif;
font-size: 80px;
color: white;
text-align: center;
/*
-webkit-animation: glow 1s ease-in-out infinite alternate;
-moz-animation: glow 1s ease-in-out infinite alternate;
*/
animation: glow 1s ease-in-out infinite alternate;
}
/*@-webkit-keyframes*/
@keyframes glow {
from {
text-shadow: 0 0 10px #fff, 0 0 20px #f94dff, 0 0 30px #d040ec, 0 0 40px #d040ec, 0 0 50px #d040ec, 0 0 60px #d040ec, 0 0 70px #d040ec;
}
to {
text-shadow: 0 0 20px #fff, 0 0 30px #f94dff, 0 0 40px #f94dff, 0 0 50px #ff4db5, 0 0 60px #f94dff, 0 0 70px #d040ec, 0 0 80px #d040ec;
}
}