forked from server/landingpage
67 lines
896 B
CSS
67 lines
896 B
CSS
/* defaults for all examples */
|
|
* {
|
|
font-family: "Arial", Gadget, sans-serif;
|
|
font-weight:bold;
|
|
font-size:24px;
|
|
}
|
|
|
|
body {
|
|
background-color:#1A1E65;
|
|
color:white;
|
|
}
|
|
|
|
.kwicks {
|
|
overflow: hidden;
|
|
list-style: none;
|
|
position: relative;
|
|
margin: 5px;
|
|
padding: 0;
|
|
}
|
|
|
|
li {
|
|
float: left;
|
|
width: 110px;
|
|
height: 90px;
|
|
cursor:pointer;
|
|
}
|
|
|
|
.kwicks .kwicks_inner {
|
|
width: 200px;
|
|
}
|
|
|
|
.kwicks .bigLetter {
|
|
margin-top:5px;
|
|
margin-left:7px;
|
|
font-size: 70px;
|
|
height: 90px;
|
|
color: black;
|
|
float: left;
|
|
display:block;
|
|
}
|
|
|
|
.kwicks .smallLetters {
|
|
display: none;
|
|
text-align: center;
|
|
width: 120px;
|
|
color: black;
|
|
font-size: 16px;
|
|
margin-top: 13px;
|
|
float: left;
|
|
}
|
|
|
|
li.active .smallLetters {
|
|
display: block;
|
|
}
|
|
|
|
#music{
|
|
background-image: url(../soundon.png);
|
|
background-repeat: no-repeat;
|
|
width: 45px;
|
|
height: 43px;
|
|
}
|
|
|
|
|
|
|
|
|
|
|