forked from External/greenlight
redesign home page
This commit is contained in:
parent
fa64e53792
commit
c1549193f2
|
@ -70,6 +70,11 @@ a {
|
||||||
font-size: 26px;
|
font-size: 26px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.feature-icon {
|
||||||
|
transform: translateY(-50%);
|
||||||
|
margin-top: 50%;
|
||||||
|
}
|
||||||
|
|
||||||
.main-large {
|
.main-large {
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
}
|
}
|
||||||
|
@ -86,6 +91,11 @@ iframe{
|
||||||
font-size: 25px;
|
font-size: 25px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.feature-stamp {
|
||||||
|
width: 100px;
|
||||||
|
height: 100px;
|
||||||
|
}
|
||||||
|
|
||||||
html, body {
|
html, body {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
|
|
@ -1,13 +1,19 @@
|
||||||
<div class="container">
|
<div class="room-section pb-2 pt-9">
|
||||||
|
<div class="container text-center">
|
||||||
|
|
||||||
<h1 id="main-text" class="display-3 text-center text-primary mt-9">Teach Students Online.</h1>
|
<h1 id="main-text" class="display-3 font-weight-400">Welcome to Greenlight.</h1>
|
||||||
|
<h4 class="text-muted">A simple front end for your BigBlueButton Open Source Web Conferencing Server.</h4>
|
||||||
|
|
||||||
<hr class="small-rule">
|
<%= link_to "https://www.google.com", class: "p-3", target: "_blank" do %>
|
||||||
|
<h4>Watch a tutorial on using Greenlight <i class="fe fe-play-circle"></i></h4>
|
||||||
<%= render "shared/features" %>
|
<% end %>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<%= render "shared/features" %>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
/*
|
||||||
textOptions = [
|
textOptions = [
|
||||||
"Start your own Meeting.",
|
"Start your own Meeting.",
|
||||||
"Collaborate with Friends.",
|
"Collaborate with Friends.",
|
||||||
|
@ -27,4 +33,5 @@ var changeText = function(){
|
||||||
setInterval(function(){
|
setInterval(function(){
|
||||||
$('#main-text').fadeOut(1000, changeText)
|
$('#main-text').fadeOut(1000, changeText)
|
||||||
}, 7000);
|
}, 7000);
|
||||||
|
*/
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -1,33 +1,24 @@
|
||||||
<h3 class="text-center text-primary mt-6">Features</h3>
|
<h1 class="text-center mt-7">Features</h1>
|
||||||
<hr class="small-rule">
|
|
||||||
|
|
||||||
<div class="container text-center">
|
<div class="container text-center">
|
||||||
<div class="row mt-4">
|
|
||||||
<div class="col-4">
|
|
||||||
<i class="fas fa-video fa-6x"></i>
|
|
||||||
<h4 class="mt-5">Manage Recordings</h4>
|
|
||||||
</div>
|
|
||||||
<div class="col-4">
|
|
||||||
<i class="fas fa-users fa-6x"></i>
|
|
||||||
<h4 class="mt-5">Create Meetings</h4>
|
|
||||||
</div>
|
|
||||||
<div class="col-4">
|
|
||||||
<i class="fas fa-history fa-6x"></i>
|
|
||||||
<h4 class="mt-5">Session History</h4>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="row mt-8">
|
<div class="row mt-8">
|
||||||
<div class="col-4">
|
<div class="col-4">
|
||||||
<i class="fas fa-pencil-alt fa-6x"></i>
|
<span class="stamp feature-stamp bg-cyan">
|
||||||
<h4 class="mt-5">Custom Designs</h4>
|
<i class="fas fa-chalkboard-teacher fa-3x feature-icon"></i>
|
||||||
|
</span>
|
||||||
|
<h4 class="mt-5 text-muted">Personalized Rooms</h4>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-4">
|
<div class="col-4">
|
||||||
<i class="fas fa-user-cog fa-6x"></i>
|
<span class="stamp feature-stamp bg-cyan">
|
||||||
<h4 class="mt-5">User Mangement</h4>
|
<i class="fas fa-film fa-3x feature-icon"></i>
|
||||||
|
</span>
|
||||||
|
<h4 class="mt-5 text-muted">Recording Management</h4>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-4">
|
<div class="col-4">
|
||||||
<i class="fas fa-thumbs-up fa-6x"></i>
|
<span class="stamp feature-stamp bg-cyan">
|
||||||
<h4 class="mt-5">Feature Six</h4>
|
<i class="fas fa-pencil-alt fa-3x feature-icon"></i>
|
||||||
|
</span>
|
||||||
|
<h4 class="mt-5 text-muted">Custom Designs</h4>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue