forked from DELTACRYPTO/BERKLY
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathstyle.css
More file actions
79 lines (71 loc) · 1.44 KB
/
style.css
File metadata and controls
79 lines (71 loc) · 1.44 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
/* Style global */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
background-color: #1e3a8a; /* Fond bleu uni */
color: #333;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
padding: 20px;
}
/* Titre principal */
h1 {
font-size: 2rem;
font-weight: 600;
margin-bottom: 20px;
text-align: center;
color: #1f2937;
}
/* Conteneur principal */
.container {
background-color: white;
width: 100%;
max-width: 500px;
padding: 30px;
border-radius: 16px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
text-align: center;
}
/* Bouton principal */
button {
display: inline-block;
width: 100%;
padding: 15px;
font-size: 1.1rem;
font-weight: 600;
color: white;
background-color: #3b82f6;
border: none;
border-radius: 12px;
cursor: pointer;
transition: background 0.3s ease, transform 0.2s ease;
box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}
button:hover {
background-color: #2563eb;
transform: translateY(-3px);
}
button:active {
transform: translateY(0);
}
/* Message d'état ou résultat */
#statusMessage {
margin-top: 20px;
font-size: 1rem;
color: #4b5563;
word-break: break-word;
}
/* Pied de page */
footer {
margin-top: 30px;
font-size: 0.9rem;
color: #e5e7eb;
text-align: center;
}