exptech commited on
Commit
e705590
·
verified ·
1 Parent(s): 982840d

4-column equipment grid with responsive breakpoints

Browse files
Files changed (1) hide show
  1. style.css +22 -7
style.css CHANGED
@@ -919,8 +919,8 @@ a:hover { opacity: 0.8; }
919
 
920
  .equipment-sections {
921
  display: grid;
922
- grid-template-columns: 1fr 1fr;
923
- gap: 3rem;
924
  }
925
 
926
  .equip-block h3 {
@@ -929,13 +929,22 @@ a:hover { opacity: 0.8; }
929
  text-transform: uppercase;
930
  letter-spacing: 0.12em;
931
  color: var(--text-tertiary);
 
 
 
 
 
 
932
  margin-bottom: 0.75rem;
933
  }
934
 
935
- .equip-block p {
936
- font-size: 0.85rem;
937
- color: var(--text-secondary);
938
- line-height: 1.7;
 
 
 
939
  }
940
 
941
  .equipment-grid {
@@ -1069,11 +1078,17 @@ footer {
1069
  }
1070
 
1071
  .equipment-sections {
1072
- grid-template-columns: 1fr;
1073
  gap: 2rem;
1074
  }
1075
  }
1076
 
 
 
 
 
 
 
1077
  @media (max-width: 768px) {
1078
  .hero { min-height: 45vh; }
1079
 
 
919
 
920
  .equipment-sections {
921
  display: grid;
922
+ grid-template-columns: repeat(4, 1fr);
923
+ gap: 2rem;
924
  }
925
 
926
  .equip-block h3 {
 
929
  text-transform: uppercase;
930
  letter-spacing: 0.12em;
931
  color: var(--text-tertiary);
932
+ margin-bottom: 0.5rem;
933
+ }
934
+
935
+ .equip-name {
936
+ font-size: 0.95rem;
937
+ font-weight: 700;
938
  margin-bottom: 0.75rem;
939
  }
940
 
941
+ .equip-name a {
942
+ color: var(--accent);
943
+ text-decoration: none;
944
+ }
945
+
946
+ .equip-name a:hover {
947
+ text-decoration: underline;
948
  }
949
 
950
  .equipment-grid {
 
1078
  }
1079
 
1080
  .equipment-sections {
1081
+ grid-template-columns: 1fr 1fr;
1082
  gap: 2rem;
1083
  }
1084
  }
1085
 
1086
+ @media (max-width: 600px) {
1087
+ .equipment-sections {
1088
+ grid-template-columns: 1fr;
1089
+ }
1090
+ }
1091
+
1092
  @media (max-width: 768px) {
1093
  .hero { min-height: 45vh; }
1094