76 lines
1.4 KiB
CSS
76 lines
1.4 KiB
CSS
#container{
|
|
grid-template-columns: 2fr 1fr;
|
|
}
|
|
/* General forum stuff */
|
|
.forumLink{
|
|
text-decoration: none;
|
|
}
|
|
/* Choosing section to view */
|
|
#userTopWrapper{
|
|
height: 2em;
|
|
background-color: white;
|
|
box-shadow: 0 1px 3px #ddd;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
position: relative;
|
|
z-index: 5;
|
|
}
|
|
.userTopSel{
|
|
color: black;
|
|
text-decoration: none;
|
|
margin: 0 1em 2px 1em;
|
|
}
|
|
.userTopSel[active]{
|
|
margin-bottom: 0;
|
|
padding-bottom: 1px;
|
|
border-bottom: 2px solid #00d09f;
|
|
border-radius: 0.2em;
|
|
}
|
|
.userTopSel:hover:not([active]){
|
|
margin-bottom: 0;
|
|
border-bottom: 2px solid #2ce4b9;
|
|
border-radius: 0.2em;
|
|
}
|
|
#top{
|
|
box-shadow: none; /* Overriding the top bar's shadow */
|
|
}
|
|
/*Didn't know where to put these so I put it here*/
|
|
#userImg{
|
|
border-radius: 50%;
|
|
}
|
|
#userActions>p>a{
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
#userActions>p>a:not(:first-of-type){
|
|
margin-top: 0.6em;
|
|
}
|
|
#userActions>p>a:hover{
|
|
text-decoration: underline;
|
|
}
|
|
|
|
/* User info */
|
|
#right{
|
|
background-color: rgba(0,0,0,0);
|
|
padding: 0;
|
|
margin: 0;
|
|
border: none;
|
|
box-shadow: none;
|
|
}
|
|
.infoDump>h2{
|
|
text-overflow: ellipsis;
|
|
}
|
|
#userImg{
|
|
width: 30%;
|
|
display: block;
|
|
margin: 0 auto;
|
|
}
|
|
.infoDump{
|
|
display: block;
|
|
}
|
|
.infoDump>p{
|
|
text-align: center;
|
|
margin: 0;
|
|
margin-top: 0.7em;
|
|
} |