You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.1 KiB
54 lines
1.1 KiB
/* ********************************************************************************************************************
|
|
RPSLS - Rock, Paper, Scissors, Lizard, Spock Game
|
|
|
|
File: public/assets/css/game.css
|
|
Description: Main CSS Page
|
|
Author: Rick Hays
|
|
Date: 11/15/2019
|
|
License: MIT
|
|
CopyRight: Copyright © 2019 - Rick Hays, All Rights Reserved.
|
|
|
|
Revisions:
|
|
YYYY-MM-DD XX Description
|
|
***************************************************************************************************************** */
|
|
|
|
.column
|
|
{
|
|
border-radius: 15px;
|
|
float: left;
|
|
font-size: 18px;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
width: 33.33%;
|
|
}
|
|
|
|
.columnspanCountHeader
|
|
{
|
|
border-radius: 15px;
|
|
display: inline-block;
|
|
height: 40px;
|
|
line-height: 40px;
|
|
margin: 0 auto;
|
|
vertical-align: middle;
|
|
width: 80%
|
|
}
|
|
|
|
.columnspanTryAgain,
|
|
.columnspanNoThanks
|
|
{
|
|
border-radius: 15px;
|
|
display: block;
|
|
height: 40px;
|
|
line-height: 40px;
|
|
margin-left: 15px;
|
|
vertical-align: middle;
|
|
width: 60%
|
|
}
|
|
|
|
/* Clear floats after the columns */
|
|
.row:after
|
|
{
|
|
content: "";
|
|
display: table;
|
|
clear: both;
|
|
}
|
|
|