-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #236 from wlcx/emf2024
EMF2024
- Loading branch information
Showing
5 changed files
with
186 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
{ | ||
"$schema": "../../../docs/config-schema.json", | ||
"conference": { | ||
"title": "Electromagnetic Field 2024", | ||
"acronym": "emf2024", | ||
"description": "Live streaming from Electromagnetic Field 2024", | ||
"keywords": [ | ||
"EMF", "EMF2024", "EMF24", "Electromagnetic Field", "Streaming", "Hacker" | ||
], | ||
"organizer": "EMF", | ||
"start": "2024-05-30T00:00:00+01:00", | ||
"end": "2024-06-02T00:00:00+01:00", | ||
"streamingConfig": { | ||
"features": { | ||
"embed": true, | ||
"relive": true, | ||
"feedback": true, | ||
"social": { | ||
"hashtag": "#EMF2024", | ||
"mastodon": true | ||
}, | ||
"chat": { | ||
"irc": false, | ||
"matrix": false | ||
} | ||
}, | ||
"overviewPage": { | ||
"sections": [ | ||
{ | ||
"title": "Stages", | ||
"items": [ | ||
{ | ||
"slug": "stagea" | ||
}, | ||
{ | ||
"slug": "stageb" | ||
}, | ||
{ | ||
"slug": "stagec" | ||
} | ||
] | ||
} | ||
] | ||
}, | ||
"schedule": { | ||
"url": "https://www.emfcamp.org/schedule/2024.frab", | ||
"scale": 7 | ||
}, | ||
"html": { | ||
"footer": "\n\t\tby <a href=\"https://emfcamp.org\">EMF Video Team</a>\n\t", | ||
"not_started": null | ||
} | ||
}, | ||
"rooms": [ | ||
{ | ||
"guid": "0EFBB39E-FDBA-454B-8957-4D41E5C90309", | ||
"name": "Stage A", | ||
"slug": "stagea", | ||
"streamId": "emf_stagea", | ||
"streamingConfig": { | ||
"wide": true, | ||
"social": { | ||
"hashtag": "#EMF2024", | ||
"mastodon": true | ||
} | ||
} | ||
}, | ||
{ | ||
"guid": "579340C0-E8EE-4384-838D-89633A1B43EB", | ||
"name": "Stage B", | ||
"slug": "stageb", | ||
"streamId": "emf_stageb", | ||
"streamingConfig": { | ||
"wide": true, | ||
"social": { | ||
"hashtag": "#EMF2024", | ||
"mastodon": true | ||
} | ||
} | ||
}, | ||
{ | ||
"guid": "DEF1DBC7-3DDD-4C1F-BAE4-14362D05B557", | ||
"name": "Stage C", | ||
"slug": "stagec", | ||
"streamId": "emf_stagec", | ||
"streamingConfig": { | ||
"wide": true, | ||
"social": { | ||
"hashtag": "#EMF2024", | ||
"mastodon": true | ||
} | ||
} | ||
} | ||
] | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
@import "../../../assets/css/_structure.less"; | ||
|
||
@blue: #2EADD9; | ||
@pink: #F55089; | ||
@orange: #F77F02; | ||
@yellow: #F9E200; | ||
@dark-green: #213018; | ||
@mid-green: #528329; | ||
@pale-green: #AFC944; | ||
|
||
@white: #ffffff; | ||
@grey-lighter: #333333; | ||
@grey-darker: #2a2a2a; | ||
@grey-light: #c1c1c1; | ||
@dark: #242424; | ||
|
||
|
||
@brand-primary: @pale-green; | ||
@well-bg: @dark-green; | ||
@navbar-default-bg: @dark-green; | ||
@navbar-default-link-color: @grey-light; | ||
@navbar-default-link-hover-color: @white; | ||
// @state-warning-bg: lighten(@yellow, 25%); | ||
// @state-info-bg: lighten(@blue, 25%); | ||
|
||
@btn-default-bg: @pale-green; | ||
@panel-default-heading-bg: @dark-green; | ||
@panel-default-text: @white; | ||
@panel-bg: @dark-green; | ||
@schedule-bg: @dark; | ||
@schedule-now-bg: fade(@dark-green, 40%); | ||
|
||
@navbar-h: 100px; | ||
|
||
@font-face { | ||
font-family: 'Raleway'; | ||
src: url('Raleway-VF.woff2') format('woff2'); | ||
font-weight: normal; | ||
font-style: normal; | ||
} | ||
|
||
body { | ||
background-color: @dark-green; | ||
color: @white; | ||
padding-top: @navbar-h; | ||
font-family: 'Raleway'; | ||
} | ||
|
||
|
||
nav { | ||
height: @navbar-h; | ||
background: url(header-2.png) left center/60%; | ||
} | ||
|
||
.btn-default { | ||
border-color: @dark-green; | ||
} | ||
|
||
nav .navbar-brand .icon { | ||
background-image: url(emf2024-logo-dark.svg); | ||
background-size: 50px calc(@navbar-h - 25); | ||
width: 50px; | ||
height: calc(@navbar-h - 25); | ||
margin-top: -25px; | ||
} | ||
|
||
.nav.navbar-right.button-wrapper { | ||
margin-top: 3px; | ||
} | ||
|
||
.navbar-brand { | ||
color: @white !important; | ||
} | ||
|
||
nav .container { | ||
margin-top: 22px; | ||
} |