Hotel/hotel/rooms/static/style.css

42 lines
862 B
CSS
Raw Normal View History

2019-01-13 15:17:14 +01:00
#hotels {
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
border-collapse: collapse;
width: 60%;
margin-left: 20%;
margin-right: 20%;
2019-01-13 17:37:21 +01:00
background-color: white;
2019-01-13 15:17:14 +01:00
}
#hotels td, #hotels th {
border: 1px solid #ddd;
padding: 8px;
text-align: center;
}
#hotels tr:hover {background-color: #f2f2f2;}
#hotels th {
padding-top: 12px;
padding-bottom: 12px;
background-color: #000000;
color: white;
}
2019-01-13 15:31:42 +01:00
2019-01-13 17:37:21 +01:00
html {
background: url(images/background.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
h1, h2, h3, h4, h5 {
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
text-shadow: -2px 0 black, 0 2px black, 2px 0 black, 0 -2px black;
2019-01-13 18:17:43 +01:00
color: white;
}
a {
text-decoration: none !important;
color: black;
2019-01-13 17:37:21 +01:00
}