forked from wdxvvy/diddypay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
176 lines (155 loc) · 3.8 KB
/
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
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
body {
font-family: Arial, sans-serif;
color: #E0E0E0; /* Цвет текста */
background: linear-gradient(145deg, #212121, #1D2B64); /* Градиент от темно-серого к темно-синему */
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
padding-top: 70px;
animation: fadeIn 1s ease-in;
}
h1 {
color: #FFFFFF;
margin-bottom: 20px;
text-align: center;
font-size: 32px;
margin-top: 0;
animation: fadeInHeader 1.5s ease-out;
}
@keyframes fadeInHeader {
0% {
opacity: 0;
transform: translateY(-30px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
.container {
text-align: center;
background: #2C2C2C; /* Темный серый фон для контейнера */
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
width: 400px;
max-width: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.profile-info {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 20px;
}
.profile-img {
width: 100px;
height: 100px;
border-radius: 50%;
margin: 0 auto;
border: 4px solid #2196F3; /* Синий цвет для аватарки */
opacity: 0;
animation: fadeInProfile 1s ease-in-out forwards;
}
.profile-info h2 {
color: #E0E0E0;
margin-top: 10px;
}
@keyframes fadeInProfile {
0% {
opacity: 0;
transform: translateY(20px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
.form-container {
margin-top: 20px;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
}
label {
display: block;
margin: 10px 0 5px;
font-size: 14px;
color: #E0E0E0;
}
input[type="number"], select {
width: 80%;
padding: 10px;
margin-top: 10px;
border: 1px solid #2196F3; /* Синий цвет для границы */
border-radius: 4px;
background-color: #333333; /* Темный фон для инпутов */
color: #E0E0E0;
font-size: 14px;
transition: border-color 0.3s ease, background-color 0.3s ease;
}
input[type="number"]:focus, select:focus {
border-color: #2196F3; /* Синий при фокусе */
background-color: #444444;
outline: none;
}
button {
width: 80%;
padding: 10px;
margin-top: 20px;
background-color: #2196F3; /* Синий для кнопки */
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
button:hover {
background-color: #1976D2; /* Темно-синий при наведении */
}
.confirmationCodeContainer, .confirmation-panel {
display: none;
text-align: center;
background-color: #292929;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.confirmation-panel {
background: linear-gradient(145deg, #212121, #1D2B64); /* Темный градиент для окна */
color: #E0E0E0;
}
.confirmation-panel h2 {
margin-bottom: 20px;
}
/* Минималистичное уведомление */
.transaction-result {
text-align: center;
padding: 15px 25px;
border-radius: 5px;
width: 250px;
margin: 0 auto;
position: relative;
font-size: 16px;
display: none;
color: white;
}
.success {
background-color: #4CAF50;
}
.error {
background-color: #F44336;
}
.transaction-result h3 {
margin: 0;
font-size: 18px;
}
.transaction-result p {
font-size: 14px;
}