contributors, Interface administrators, uploadaccess
875
edits
No edit summary |
No edit summary |
||
Line 275: | Line 275: | ||
----- | ----- | ||
/* Style the aptitude table */ | /* Style the aptitude table */ | ||
.aptitude-table { | .aptitude-table { | ||
border-collapse: collapse; | |||
width: 100%; | |||
} | } | ||
/* Style | /* Style table headers */ | ||
.aptitude- | .aptitude-table th { | ||
background-color: #007BFF; | |||
color: white; | |||
font-weight: bold; | font-weight: bold; | ||
padding: 10px; | |||
text-align: center; | text-align: center; | ||
} | } | ||
/* Style | /* Style table cells */ | ||
.aptitude- | .aptitude-table td { | ||
padding: 10px; | |||
text-align: center; | text-align: center; | ||
border: 1px solid #ccc; | |||
} | } | ||
/* Style | /* Style character icons within table cells */ | ||
.aptitude- | .aptitude-table img { | ||
width: 50px; | width: 50px; | ||
height: 50px; | height: 50px; | ||
border: 2px solid #007BFF; | border: 2px solid #007BFF; | ||
border-radius: 50%; | border-radius: 50%; | ||
Line 326: | Line 307: | ||
} | } | ||
.aptitude- | .aptitude-table img:hover { | ||
transform: scale(1.1); | transform: scale(1.1); | ||
} | } |