contributors, Interface administrators, uploadaccess
875
edits
No edit summary |
No edit summary |
||
Line 274: | Line 274: | ||
/* Style the aptitude container */ | |||
.aptitude-container { | .aptitude-container { | ||
display: flex; | display: flex; | ||
align-items: center; | align-items: center; | ||
background-color: #f0f0f0; | |||
border: 1px solid #ccc; | |||
border-radius: 5px; | |||
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); | |||
padding: 10px; | |||
} | } | ||
/* Style the aptitude text */ | |||
.aptitude { | .aptitude-text { | ||
font-weight: bold; | |||
font-size: 20px; | |||
} | } | ||
/* Style the aptitude icons container */ | |||
. | .aptitude-icons { | ||
display: flex; | display: flex; | ||
align-items: center; | align-items: center; | ||
margin-left: 20px; | |||
} | } | ||
/* Style the aptitude icons (file links) */ | |||
.aptitude-icons a { | |||
display: inline-block; | |||
text-align: center; | |||
text-decoration: none; | |||
margin: 0 10px; | |||
} | |||
. | /* Style the character icons */ | ||
.aptitude-icons img { | |||
width: 50px; | width: 50px; | ||
height: 50px; | height: 50px; | ||
border: 2px solid #007BFF; | |||
border-radius: 50%; | |||
transition: transform 0.2s; | |||
} | |||
.aptitude-icons img:hover { | |||
transform: scale(1.1); | |||
} | } |