/*
 * Machine de Turing - visualiseur et simulateur.
 * SPDX-FileCopyrightText: 2015-2021 Andy Li
 * SPDX-FileCopyrightText: 2026 Laurent Abbal
 * SPDX-License-Identifier: BSD-3-Clause AND AGPL-3.0-only
 * Voir LICENSE-BSD.txt et LICENSE.txt.
 */

.tape-cell > rect {
  fill: white;
  stroke: gray;
}

.tape-cell > text {
  stroke: black;
  stroke-width: 0.5;
  pointer-events: none;
  text-anchor: middle;
  font-family: "Source Code Pro", "Consolas", "Menlo", "DejaVu Sans Mono", "Courier", monospace;
  font-size: 25px;
}

#tape-head {
  fill: none;
  stroke: gold;
}
