kevinconka commited on
Commit
e64799d
·
verified ·
1 Parent(s): 6d6fd27

move arrows down for real

Browse files
Files changed (1) hide show
  1. index.html +3 -3
index.html CHANGED
@@ -51,7 +51,7 @@
51
  .slider::after {
52
  content: '';
53
  position: absolute;
54
- top: 20%;
55
  transform: translateY(-50%);
56
  width: 30px;
57
  height: 30px;
@@ -60,12 +60,12 @@
60
  transition: opacity 0.3s;
61
  }
62
  .slider::before {
63
- left: -22px;
64
  /* Simplified arrowhead pointing left */
65
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="rgb(0, 80, 150)"><polygon points="14,7 8,12 14,17"/></svg>');
66
  }
67
  .slider::after {
68
- right: -22px;
69
  /* Simplified arrowhead pointing right */
70
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="rgb(0, 80, 150)"><polygon points="10,7 16,12 10,17"/></svg>');
71
  }
 
51
  .slider::after {
52
  content: '';
53
  position: absolute;
54
+ top: 75%;
55
  transform: translateY(-50%);
56
  width: 30px;
57
  height: 30px;
 
60
  transition: opacity 0.3s;
61
  }
62
  .slider::before {
63
+ left: -27px;
64
  /* Simplified arrowhead pointing left */
65
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="rgb(0, 80, 150)"><polygon points="14,7 8,12 14,17"/></svg>');
66
  }
67
  .slider::after {
68
+ right: -27px;
69
  /* Simplified arrowhead pointing right */
70
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="rgb(0, 80, 150)"><polygon points="10,7 16,12 10,17"/></svg>');
71
  }