1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- body{
- font-family: Arial, sans-serif;
- }
- .list {
- display: flex;
- justify-content: center;
- flex-direction: column;
- }
- .li {
- text-decoration: none;
- }
- .div {
- display: flex;
- align-items: center;
- }
- .button{
- margin: 5px 15px;
- height: 25px;
- border: 1px solid tan;
- border-radius: 3px;
- cursor: pointer;
- background-color: cornsilk;
- color: darkred;
- position: relative;
- font-weight: 600;
- left: 10px;
- }
- .button:hover {
- height: 25px;
- border: 1px solid darkred;
- border-radius: 3px;
- cursor: pointer;
- background-color: darkred;
- color: white;
- }
- .wrapper{
- font-family: Georgia, sans-serif;
- display: flex;
- justify-content: center;
- flex-direction: column;
- align-items: center;
- height: 100vh;
- }
- .allButton{
- display: flex;
- margin: 20px 0 50px 0;
- }
- .button1, .button2, .button3{
- margin: 10px;
- cursor: pointer;
- color: white;
- background-color: darkgreen;
- border: none;
- border-radius: 3px;
- width: 140px;
- height: 60px;
- font-size: 20px;
- }
- .allSpan{
- margin: 10px 0 100px 0;
- }
- .span1, .span2 {
- margin: 0 10px;
- font-size: 18px;
- font-weight: 700;
- }
- .button1:hover, .button2:hover, .button3:hover{
- margin: 10px;
- cursor: pointer;
- color: white;
- background-color: darkolivegreen;
- border: none;
- border-radius: 3px;
- width: 140px;
- height: 60px;
- font-size: 20px;
- }
- .outResultWinner{
- margin-top: 20px;
- font-size: 24px;
- font-weight: 700;
- color: darkred;
- min-height: 40px;
- }
|