You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
451 B
29 lines
451 B
<!doctype html> |
|
<html> |
|
<head> |
|
<meta charset="utf-8"> |
|
<title>webdev_course.css</title> |
|
</head> |
|
|
|
<body> |
|
<pre> |
|
#reservations { |
|
background-color: #333; |
|
display: flex; |
|
flex-direction: row; |
|
} |
|
|
|
#reservations li { |
|
float: left; |
|
color: #FFF; |
|
padding: 20px 16px; |
|
font-size: 24px; |
|
} |
|
|
|
#reservations input { |
|
height: 30px; |
|
vertical-align: text-bottom; |
|
margin-left: 6px; |
|
}</pre> |
|
</body> |
|
</html>
|
|
|