Skip to content

Instantly share code, notes, and snippets.

@Fma965
Created May 10, 2018 13:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Fma965/d30ac1fa5695304a7d6dcdc748220027 to your computer and use it in GitHub Desktop.
Save Fma965/d30ac1fa5695304a7d6dcdc748220027 to your computer and use it in GitHub Desktop.
<style>
.flex {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
background: transparent;
margin-top:10px;
box-shadow: none !important;
}
.flex-child {
flex: 1 1 0;
padding: 10px 15px;
}
#flex-discord {
overflow:hidden;
min-width: 350px;
}
#flex-netdata {
min-width: 695px;
}
@media only screen and (max-width: 800px) {
#flex-netdata {
display:none;
}
}
@media only screen and (max-width: 400px) {
.flex-child>h5 {
margin-left: 15px;
}
#main-chat {
width: 100% !important;
}
}
#announcementRow {
background-color:transparent !important;
}
.flex-child>h5 {
text-transform: uppercase;
font-weight: 600 !important;
font-size: 15px;important;
}
.overflowhider {
height: 200px;
overflow: hidden;
}
#discordwidget {
left: -10px;
position: relative;
height: calc(200px + 230px);
width: calc(100% + 10px);
top: -100px;
}
#netdatawidget {
height:calc(200px);
width:calc(100%);
}
</style>
<div id="announcementRow" class="row">
<div class="content-box flex">
<div class="flex-child" id="flex-discord">
<h5><span>Announcements</span></h5>
<div class="overflowhider"><embed id="discordwidget" src='https://widgetbot.io/embed/'/></div>
</div>
<div class="flex-child box-shadow" id="flex-netdata">
<h5><span>Server Usage</span></h5>
<div class="overflowhider"><embed id="netdatawidget" src='/customnetdata/custom.html'/></div>
</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment