CAU-Web-Fall-2018-Project-1/static/css/style.css

34 lines
520 B
CSS
Raw Normal View History

2018-12-12 06:04:47 +00:00
#logo-container {
height: 64px;
2017-04-14 12:31:29 +00:00
}
2018-12-12 06:04:47 +00:00
#logo-container img {
width: 40px;
2017-04-14 12:31:29 +00:00
}
2018-12-12 06:04:47 +00:00
.exercise-info-container {
width: 560px;
min-height: 100px;
margin: 20px auto 0;
border-radius: 5px;
padding: 10px 15px;
2018-12-13 01:18:24 +00:00
}
#point-container {
position: relative;
}
/* Selector point */
#point-container .point {
position: absolute;
background: red;
width: 10px;
height: 10px;
border-radius: 50%;
cursor: pointer;
2018-12-13 01:55:35 +00:00
display: none;
}
#point-container.start .point {
display: inherit;
2018-12-12 06:04:47 +00:00
}