theshell.ch/site/pages/fs/quiz_java/exampleofcss.css
annoum 2254673d2b added quiz_java to use implementing javascrpit to quiz the user of website after every reading
git-svn-id: svn+ssh://atelier.inf.usi.ch/home/bevilj/group-1@115 a672b425-5310-4d7a-af5c-997e18724b81
2018-11-12 07:49:57 +00:00

75 lines
859 B
CSS

body {
font-family: 'Lato', sans-serif;
}
#quiz {
margin-left: 10px;
background: #d2def2;
padding: 10px 20px 10px 20px;
width: 400px;
border-radius: 20px;
float: left;
}
input {
margin-bottom: 20px;
display: block;
}
#textbox {
height: 25px;
font-size: 16px;
border-radius: 5px;
border: none;
padding-left: 5px;
}
#button {
background: green;
border: none;
border-radius: 5px;
padding: 10px;
color: white;
font-size: 16px;
transition-duration: .5s;
margin-top: 15px;
}
#button:hover {
background: white;
border: 1px solid green;
color: black;
cursor: pointer;
}
#after_submit {
visibility: hidden;
background: #ff5459;
padding: 10px 20px 10px 20px;
width: 400px;
border-radius: 20px;
float: left;
margin-left: 20px;
font-size: 30px;
}
#picture {
width: 375px;
height: 245px;
}
#mc {
display: inline;
}