-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadd-code.css
More file actions
92 lines (83 loc) · 1.74 KB
/
Copy pathadd-code.css
File metadata and controls
92 lines (83 loc) · 1.74 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
85
86
87
88
89
90
91
92
.add-container, .container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 70vh;
padding: 0;
}
.token-card {
background: rgba(255, 255, 255, 0.08);
backdrop-filter: blur(4px);
border: 2px solid #FF4444;
border-radius: 16px;
padding: 32px 28px 24px 28px;
width: 320px;
box-shadow: 0 0 20px rgba(255, 68, 68, 0.13);
display: flex;
flex-direction: column;
gap: 18px;
color: white;
font-family: 'CaskaydiaCove Nerd Font', 'Delius', sans-serif;
}
.token-card label {
font-size: 15px;
margin-bottom: 2px;
color: #fff;
letter-spacing: 0.01em;
}
.token-card input.keybox {
padding: 10px 12px;
font-size: 16px;
border: none;
border-radius: 8px;
background: rgba(255, 255, 255, 0.18);
color: white;
outline: none;
margin-bottom: 6px;
transition: background 0.2s, border 0.2s;
border: 1.5px solid transparent;
}
.token-card input.keybox:focus {
background: rgba(255, 255, 255, 0.28);
border: 1.5px solid #FF4444;
}
#error-message {
color: #ff5555;
font-size: 13px;
min-height: 18px;
margin-bottom: 2px;
text-align: center;
font-weight: 500;
letter-spacing: 0.01em;
}
.btn-group {
display: flex;
justify-content: space-between;
margin-top: 10px;
gap: 12px;
}
.svg-btn {
color: #FF5555;
background: none;
border: none;
cursor: pointer;
transition: color 0.2s, transform 0.1s;
display: flex;
align-items: center;
justify-content: center;
padding: 7px 10px;
border-radius: 8px;
font-size: 18px;
}
.svg-btn:hover, .svg-btn:focus-visible {
color: #fff;
background: rgba(255, 85, 85, 0.09);
outline: none;
transform: scale(1.08);
}
.app-title {
margin-bottom: 18px;
font-size: 2rem;
letter-spacing: 0.02em;
}