Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

issue#1285 mastodon link speaker #31

Merged
merged 1 commit into from
Nov 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 22 additions & 5 deletions resources/themes/basis_child/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,12 @@ article.conferenciers {

.conferenciers h3 {
font-family: Roboto, Helvetica, sans-serif;
text-transform: uppercase;
font-weight: 400;
font-weight: bold;
color: #045e80;
float: left;
}
.conferenciers h3 .societe {
font-weight: normal;
font-size: 23px;
}

article.conferenciers a.twitter {
Expand Down Expand Up @@ -267,10 +269,25 @@ footer .widget_nav_menu a{
top: 5px;
}

.twitter-follow-button {
.follow-button {
display: inline-flex;
margin: 0 15px;
align-items: center;
font-weight: bold;
font-size: 12px;
border-radius: 9999px;
padding: 4px 12px;
box-sizing: border-box;
background-color: #CCC;
color: #045e80;
}
.follow-button:hover {
background-color: #045e80;
color: #fff;
}
.follow-button svg {
margin-right: 5px;
}

article .basis-list ul {
list-style-position: inside;
}
Expand Down