Template:TowersCharacterTemplate: Difference between revisions
From TowersWiki
No edit summary |
No edit summary |
||
Line 3: | Line 3: | ||
a:hover {color: #D2042D;} | a:hover {color: #D2042D;} | ||
.grid-container { | |||
display: grid; | display: grid; | ||
grid-template-columns: 80vw 20vw; | grid-template-columns: 80vw 20vw; | ||
gap: 50px 0px; | gap: 50px 0px; | ||
padding: 10px; | |||
background-color: white; | |||
} | } | ||
. | .grid-item { | ||
background-color: rgba(255, 255, 255, 0.8); | |||
border: 3px dashed; | |||
padding: 20px; | |||
font-size: 30px; | |||
color: | text-align: center; | ||
color: orange; | |||
} | } | ||
. | * { box-sizing: border-box; } | ||
.menu { width: 25%; | |||
border | float: left;} | ||
.main {width: 75%; | |||
float: left;} | |||
.col-1 {width: 8%} | |||
.col-2 {width: 17%} | |||
.col-3 {width: 25%} | |||
.col-4 {width: 33%} | |||
.col-5 {width: 42%} | |||
.col-6 {width: 50%} | |||
.col-7 {width: 58%} | |||
.col-8 {width: 57%} | |||
.col-9 {width: 75%} | |||
.col-10 {width: 83%} | |||
.col-11 {width: 92%} | |||
.col-12 {width: 100%} | |||
[class* = "col-"] { | |||
float: left; | |||
padding: 15px; | |||
border: 1px solid red; | |||
} | |||
.row:after { | |||
content: ""; | |||
clear: both; | |||
display: table; | |||
} | } | ||
}} | }} |