60 lines
1.2 KiB
CSS
60 lines
1.2 KiB
CSS
|
|
||
|
|
||
|
/* show… */
|
||
|
body {
|
||
|
background: #270082;
|
||
|
color: white;
|
||
|
font-family: Europa, Georgia, 'Times New Roman', Times, serif;
|
||
|
}
|
||
|
|
||
|
|
||
|
h1, h2 {
|
||
|
font-family: Arial, Helvetica, sans-serif;
|
||
|
}
|
||
|
|
||
|
.logo{
|
||
|
width: 25%;
|
||
|
max-height: 75%;
|
||
|
margin-left: -10px;
|
||
|
background-color: #270082;
|
||
|
border-radius: 5px;
|
||
|
}
|
||
|
|
||
|
.sub{
|
||
|
text-align: center;
|
||
|
font-size: xx-large;
|
||
|
}
|
||
|
|
||
|
p{
|
||
|
font-size: 1.3em;
|
||
|
text-align: justify;
|
||
|
hyphens: auto;
|
||
|
}
|
||
|
|
||
|
.icon{
|
||
|
text-align: center;
|
||
|
font-size: 3em;
|
||
|
|
||
|
}
|
||
|
|
||
|
button {
|
||
|
-webkit-box-shadow: 2px 5px 5px #666666;
|
||
|
-moz-box-shadow: 2px 5px 5px #666666;
|
||
|
box-shadow: 2px 5px 5px #666666;
|
||
|
font-family: Arial, Helvetica, sans-serif;
|
||
|
color: #ffffff;
|
||
|
font-size: 20px;
|
||
|
background: #c03e3e;
|
||
|
padding: 10px 20px 10px 20px;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
button:hover {
|
||
|
background: #c03e3e;
|
||
|
background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
|
||
|
background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
|
||
|
background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
|
||
|
background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
|
||
|
background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
|
||
|
text-decoration: none;
|
||
|
}
|