-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
115 lines (115 loc) · 2.56 KB
/
style.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
body{
background-color: rgb(248, 248, 248);
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
font-size: 14px;
line-height: 1.42857143
}
.container{
padding-top: 50px
}
.el-margin{
margin-bottom: 30px
}
.phrase{
width: 400px;
font-size: 14px;
padding: 6px 12px;
color: #555;
border: 1px solid #ccc;
border-radius: 4px;
box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s
}
.phrase:focus{
border-color: #66afe9;
outline: 0;
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6)
}
.btn{
color: #333;
background-color: rgb(255, 255, 255);
transition: background-color ease-in-out .30s;
padding: 6px 12px;
line-height: 1.42857143;
cursor: pointer;
border: 1px solid transparent;
border-radius: 4px;
border-color: #CCC;
outline: none;
font: inherit
}
.btn:hover {
color: #333;
text-decoration: none;
background-color: #e6e6e6;
transition: background-color ease-in-out .30s;
border-color: #8c8c8c
}
.btn:focus{
color: #333;
text-decoration: none;
background-color: #e6e6e6;
transition: background-color ease-in-out .15s;
border-color: #8c8c8c
}
.btn:active{
color: #333;
text-decoration: none;
background-color: rgba(119, 136, 153, 0.459);
transition: background-color ease-in-out .15s;
border-color: #8c8c8c
}
.alert-info{
display: table;
color: #31708f;
background-color: #d9edf7;
border-color: #bce8f1;
padding: 8px;
border: 1px solid transparent;
border-radius: 4px
}
.alert-danger{
display: table;
color: #a94442;
background-color: #f2dede;
border-color: #ebccd1;
padding: 8px;
border: 1px solid transparent;
border-radius: 4px
}
.alert-success{
display: table;
color: #3c763d;
background-color: #dff0d8;
border-color: #d6e9c6;
padding: 8px;
border: 1px solid transparent;
border-radius: 4px
}
.seed-field{
display: table;
background-color: white;
min-width: 400px;
height: 20px;
border: 1px solid rgba(212, 212, 212, 0.42);
border-radius:3px
}
span{
padding: 0px 6px 0px 6px
}
.collapse {
display: none;
}
.in{
display: block;
}
#private-key,#xrb-address{
display: table;
background-color: white;
min-width: 400px;
height: 20px;
margin-bottom: 10px;
border: 1px solid rgba(212, 212, 212, 0.42);
border-radius:3px
}