28 lines
502 B
CSS
28 lines
502 B
CSS
/* Includes some default style for the starter application.
|
|
* This can be safely deleted to start fresh.
|
|
*/
|
|
|
|
/* Phoenix promo and logo */
|
|
.phx-hero {
|
|
text-align: center;
|
|
border-bottom: 1px solid #e3e3e3;
|
|
background: #eee;
|
|
border-radius: 6px;
|
|
padding: 3em 3em 1em;
|
|
margin-bottom: 3rem;
|
|
font-weight: 200;
|
|
font-size: 120%;
|
|
}
|
|
.phx-hero input {
|
|
background: #ffffff;
|
|
}
|
|
.phx-logo {
|
|
min-width: 300px;
|
|
margin: 1rem;
|
|
display: block;
|
|
}
|
|
.phx-logo img {
|
|
width: auto;
|
|
display: block;
|
|
}
|