-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
89 lines (77 loc) · 1.58 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
:root {
--primary-color: #4CAF50;
--hover-color: #45a049;
--corn-yellow: #F4D03F;
}
body {
background-color: #f5f5f5;
font-family: 'Roboto', sans-serif;
line-height: 1.6;
color: #333;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.modern-button {
background-color: var(--primary-color);
border: none;
color: white;
padding: 12px 24px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 4px;
transition: all 0.3s ease;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.modern-button:hover {
background-color: var(--hover-color);
box-shadow: 0 4px 8px rgba(0,0,0,0.15);
transform: translateY(-2px);
}
.modern-button.connected {
background-color: var(--corn-yellow);
color: #333;
}
.balance-table {
margin: 20px auto;
border-collapse: collapse;
width: 80%;
max-width: 400px;
}
.balance-table th, .balance-table td {
border: 1px solid #ddd;
padding: 8px;
text-align: center;
}
.balance-table th {
background-color: var(--primary-color);
color: white;
}
.gallery-embed {
width: 100%;
height: 600px;
border: none;
margin-top: 20px;
}
.button-grid {
display: grid;
gap: 10px;
max-width: 600px;
margin: 0 auto;
}
.button-row {
display: flex;
justify-content: center;
flex-wrap: wrap;
}
.modern-button {
margin: 5px;
flex: none;
width: 150px;
}