Files
flask-practice/static/css/styles.css
2025-01-22 12:34:03 -06:00

41 lines
755 B
CSS

body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #007BFF;
color: white;
padding: 1em 0;
text-align: center;
}
nav a {
color: white;
margin: 0 15px;
text-decoration: none;
}
main {
padding: 20px;
}
.arrow {
width: 0;
height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-bottom: 20px solid black;
margin: 20px auto;
transform-origin: center;
transition: transform 0.3s ease;
margin-left: 10px;
}
.wind-container {
display: flex; /* Align items horizontally */
align-items: center; /* Vertically center the arrow with the text */
gap: 10px; /* Add spacing between the items */
}