Spaces:
Running
Running
Update style.css
Browse files
style.css
CHANGED
@@ -27,7 +27,7 @@ h1 {
|
|
27 |
background-color: #fff;
|
28 |
box-shadow: 0 8px 16px rgba(0,0,0,0.05);
|
29 |
width: 100%;
|
30 |
-
max-width:
|
31 |
}
|
32 |
|
33 |
/* Controls */
|
@@ -62,15 +62,35 @@ button:hover {
|
|
62 |
color: #007aff;
|
63 |
}
|
64 |
|
65 |
-
/*
|
66 |
-
.
|
67 |
display: flex;
|
68 |
-
justify-content:
|
69 |
align-items: flex-start;
|
70 |
-
gap:
|
71 |
flex-wrap: wrap;
|
72 |
}
|
73 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
74 |
/* Grid */
|
75 |
.grid-wrapper {
|
76 |
width: 400px;
|
@@ -95,7 +115,6 @@ button:hover {
|
|
95 |
border-radius: 8px;
|
96 |
}
|
97 |
|
98 |
-
/* Cells */
|
99 |
.cell {
|
100 |
width: 100%;
|
101 |
aspect-ratio: 1 / 1;
|
@@ -115,7 +134,7 @@ button:hover {
|
|
115 |
box-sizing: border-box;
|
116 |
}
|
117 |
|
118 |
-
/* Stats */
|
119 |
.stats {
|
120 |
display: flex;
|
121 |
flex-direction: column;
|
|
|
27 |
background-color: #fff;
|
28 |
box-shadow: 0 8px 16px rgba(0,0,0,0.05);
|
29 |
width: 100%;
|
30 |
+
max-width: 1100px;
|
31 |
}
|
32 |
|
33 |
/* Controls */
|
|
|
62 |
color: #007aff;
|
63 |
}
|
64 |
|
65 |
+
/* Layout */
|
66 |
+
.main-layout {
|
67 |
display: flex;
|
68 |
+
justify-content: space-between;
|
69 |
align-items: flex-start;
|
70 |
+
gap: 32px;
|
71 |
flex-wrap: wrap;
|
72 |
}
|
73 |
|
74 |
+
/* Definitions (Left Column) */
|
75 |
+
.definitions {
|
76 |
+
flex: 1;
|
77 |
+
min-width: 200px;
|
78 |
+
max-width: 260px;
|
79 |
+
}
|
80 |
+
|
81 |
+
.definitions h2 {
|
82 |
+
font-size: 18px;
|
83 |
+
margin-bottom: 6px;
|
84 |
+
color: #007aff;
|
85 |
+
}
|
86 |
+
|
87 |
+
.definitions p {
|
88 |
+
font-size: 15px;
|
89 |
+
line-height: 1.5;
|
90 |
+
margin-bottom: 18px;
|
91 |
+
color: #444;
|
92 |
+
}
|
93 |
+
|
94 |
/* Grid */
|
95 |
.grid-wrapper {
|
96 |
width: 400px;
|
|
|
115 |
border-radius: 8px;
|
116 |
}
|
117 |
|
|
|
118 |
.cell {
|
119 |
width: 100%;
|
120 |
aspect-ratio: 1 / 1;
|
|
|
134 |
box-sizing: border-box;
|
135 |
}
|
136 |
|
137 |
+
/* Stats (Right Column) */
|
138 |
.stats {
|
139 |
display: flex;
|
140 |
flex-direction: column;
|