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.

77 lines
1.4 KiB

/*
* This is a manifest file that'll be compiled into application.css, which will include all the files
* listed below.
*
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
* or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
*
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
* compiled file so the styles you add here take precedence over styles defined in any styles
* defined in the other CSS/SCSS files in this directory. It is generally better to create a new
* file per style scope.
*
*= require_tree .
*= require_self
*/
* {
box-sizing: border-box;
}
html {
font-size: 24px;
}
div.alert {
background: pink;
border: 1px solid black;
border-radius: 7px;
padding: 1rem;
font-size: 1.4rem;
}
header {
height: 4rem;
border-bottom: 2px solid grey;
}
header {
background: #222;
color: deeppink;
padding: 0.5rem;
}
.logo > img {
display: block;
float: left;
height: 3rem;
padding: 0.5rem;
transition: 0.5s transform bounce;
}
.logo > img.dancing {
transform: scaleX(-1);
}
span {
font-family: cursive;
display: block;
float: left;
font-size: 2.6rem;
line-height: 3rem;
}
nav {
float: right;
color: white;
}
nav a {
color: white;
text-decoration: none;
font-size: 1.3rem;
line-height: 3rem;
}