Skip to content
Search or jump to…
Pull requests
Issues
Marketplace
Explore
 
@christyp1983 
Verapro-App-Development
/
RSL_Website
Private
Code
Issues
Pull requests
Actions
Projects
Security
Insights
Settings
RSL_Website/style.css
@christyp1983
christyp1983 Google translate addition
Latest commit 6c2f929 24 days ago
 History
 2 contributors
@mela7475@christyp1983
444 lines (359 sloc)  8.78 KB

/* green - #009b97 */

.covid-font {
    font-size: 200% !important;
}

.bg-lightblue {
    background-color: #3396ff;
}


.bg-darkgray {
    background-color: #373c48;
}

.gray {
    color: #687177;
}

.dgray {
    color: #373c48;
}

.dwhite {
    color: #d9d9d9;
}


.text-primary {
    color: #00157b !important;
}

.text-danger {
    color: #f30d35 !important;
}

.text-warning {
    color: #f6dd11 !important;
}

.nav-hov:hover {
    color: #000 !important;
}

/* ----------------------------------------------- */
/* BASIC SETUP */
/* ----------------------------------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    background-color: #fff;
    color: #555;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 20px;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    width: 100%;
}

body {
    padding-top: 110px !important;
  }

@media screen and (max-width: 768px) {
    body { padding-top: 115px !important; }
}

@media screen and (max-width: 426px) {
    body { padding-top: 115px !important; }
    .jumbotron {
        margin-top: 160px !important;
    }
}

@media screen and (max-width: 321px) {
    body { padding-top: 115px !important; }
    .jumbotron {
        margin-top: 200px !important;
    }
}

.clearfix {zoom: 1;}
.clearfix:after {
    content: '.';
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}

/* ----------------------------------------------- */
/* REUSABLE COMPONENTS */
/* ----------------------------------------------- */

.row1 {
    max-width: 1200px;
    margin: 0 auto;
}

.row2 {
    max-width: 1600px;
    margin: 0 auto;
}

.row3 {
    max-width:1330.990px;
    margin: 0 auto;
}

.carousel-row {
    max-width: 1600px;
    margin: 0 auto;
}


section {
    padding: 80px 0;
}

.box {
    padding: 1%;
}

.non-cap {
    text-transform: none;
}

/* ----- HEADINGS ----- */
h2,
h3,
h4,
h5
a {
    font-weight: 700;
    text-transform: capitalize;
}

h1 {
    font-weight: 700;
    text-transform: capitalize; 
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 240%;
    word-spacing: 4px;
    letter-spacing: 1px;
}

h2 {
    font-size: 160%;
    word-spacing: 2px;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 1px;
}


h3 {
    font-size: 110%;
    margin-bottom: 15px;
}

h5 {
    font-size: 105%;
}

.jumbotron h1 {
    font-size: 300%;
}

/*h2:after {
    display: block;
    height: 2px;
    background-color: #233b87;
    content: " ";
    width: 100px;
    margin: 0 auto;
    margin-top: 30px;
}*/


/* -----DROP DOWN NAVIGATION ----- */
.topnav {
  /*overflow: hidden;*/
  background-color: #FFFFFF;
  margin-left: auto;
  margin-right: 0;
  padding-right: 5%;
}

.topnav a {
  float: left;
  display: block;
  color: #000000;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 20px;
}

.active {
  background-color: #007BFF;
  color: white!important;
}

.topnav .icon {
  display: none;
}

.dropdown {
  float: left;
  /*overflow: hidden;*/
}

.dropdown .dropbtn {
  font-size: 20px;    
  border: none;
  outline: none;
  color: #000000;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: #555;
  color: white;
}

.dropdown-content a:hover {
  background-color: #ddd;
  color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
    font-size: 20px!important;
  }
  .topnav a.home {
    padding-right: 46px;

  }
}

@media screen and (max-width: 600px) {
    .topnav {margin-left: none!important;
        margin-right: none!important;

    }
  .topnav.responsive {position: relative;
    margin-right: 5%;}
  .topnav.responsive .icon {
    position: absolute;
    right: 1%;
    top: 0;
    font-size: 20px!important;

  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}



/* ----- DOTS ----- */
.dot {
    height: 15px;
    width: 15px;
    background-color: #007bff;
    border-radius: 50%;
    display: inline-block;
  }

  .dotdark {
    height: 15px;
    width: 15px;
    background-color: #373c48;
    border-radius: 50%;
    display: inline-block;
  }

/* ----- PARAGRAPHS ----- */
.long-copy {
    line-height: 145%;
    width: 90%;
}

.box p {
    font-size: 90%;
    line-height: 145%;
}


/* ----- ICONS ----- */
.icon-big {
    font-size: 350%;
    display: block;
    margin: 0 auto;
    margin-bottom: 10px;
    padding-bottom: 10px;
}


/* ----- BUTTONS ----- */
.btn:link,
.btn:visited,
input[type=submit] {
    display: inline-block;
    padding: 10px 30px;
    font-weight: 400;
    text-decoration: none;
    border-radius: 200px;
    -webkit-transition: background-color 0.2s, border 0.2s, color 0.2s;
    transition: background-color 0.2s, border 0.2s, color 0.2s;
}

.btn-green,
.btn-green:link,
.btn-green:visited,
input[type=submit] {
    background-color: #007bff;
    color: #fff;
}

.btn-green:hover,
.btn-green:active {
    background-color: #007bff;
    color: #fff;
}

.cta-button-home {
    width: 100%;
}

/* ----- LINKS ----- */

.covid-link {
    border-radius: .25rem !important;
}

.nav-link1:hover {
    color: #007bff;
    border-top: 1.5px solid #007bff;
}

nav {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.link-hov {
    color: #fff;
    text-decoration: none;
}

.link-hov:hover {
    color: #007bff;
    text-decoration: none;
}

.div-centered {
    text-align: left;
    margin: auto;
    width: 319px;
}


/* ----------------------------------------------- */
/* HEADER*/
/* ----------------------------------------------- */

header {
    background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url(IMG/children-smiling.jpg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url(IMG/children-smiling.jpg);
    background-size: cover;
    background-position: center;
    height: 65vh;
    background-attachment: fixed;
}

@media screen and (max-width: 426px) {
    header{
        height: 100vh;
    }
}



.hero-text {
    position: absolute;
    top: 290px;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white; 
  }

  .panel {
      border: 0px;
      background: rgba(0, 0, 0, 0.5) !important;
      padding-left: 20px;
      padding-right: 20px;
  }

.bg-pic
 {
  
    background-color: #262626;
    background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),url(IMG/OIUFM30.jpg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),url(IMG/OIUFM30.jpg);
    background-position: center;
    background-size: cover;

  
}

.header1 {
    background-size: cover;
    height: 65vh;
    background-attachment: fixed;
    background-color: #262626;
    background-image: -webkit-linear-gradient(rgba(0, 123, 255, 0.45), rgba(23, 162, 184, 0.10)),url(IMG/subway-lines.png);
    background-image: linear-gradient(rgba(0, 123, 255, 0.45), rgba(23, 162, 184, 0.10)),url(IMG/subway-lines.png);
    background-position: center;
}

.header2 {
    background-size: cover;
    height: 25vh;
    background-attachment: fixed;
    background-color: #262626;
    background-image: url(IMG/OIUFM30.jpg);
    background-position: top;
}

.about-who {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.services {
    padding-bottom: 10px;
    border-bottom: 2px solid #007bff;
}

.service-box {
    -webkit-box-shadow: 6px 1px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 6px 1px 5px 0px rgba(0,0,0,0.75);
    box-shadow: 6px 1px 5px 0px rgba(0,0,0,0.75);
}

.service-box-pic {
    -webkit-box-shadow: 6px 0.5px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 6px 0.5px 5px 0px rgba(0,0,0,0.75);
    box-shadow: 6px 0.5px 5px 0px rgba(0,0,0,0.75);
}

.hover-pic {
    transition: transform .5s;
}

.hover-pic:hover {
    transform: scale(1.45);
}

.underline1 {
    border-bottom: 2px solid #fff;
}

.underline2 {
    border-bottom: 1px solid #eeeeee;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 45%;
    margin-right: 45%;
}

.bg-trans {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
}

.bg-white--transparent {
    background: rgba(0, 0, 0, 0.3);
}

/* ----------------------------------------------- */
/* Animations */
/* ----------------------------------------------- */

.js-A-1
{
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

.bg-panel--1{
    background-size: cover;
    background-color: #5c83cd;
    background-image: -webkit-linear-gradient(rgba(40, 115, 161, 0.85), rgba(0, 144, 217, 0.65)),url(IMG/parent-engagement.jpg);
    background-image: linear-gradient(rgba(143, 212, 254, 0.85), rgba(0, 144, 217, 0.65)),url(IMG/parent-engagement.jpg);
    background-position: center;
}

.bg-panel--2{
    background-size: cover;
    background-color: #5c83cd;
    background-image: -webkit-linear-gradient(rgba(220, 53, 69, 0.65), rgba(255, 0, 0, 0.75)),url(IMG/homework-help.jpg);
    background-image: linear-gradient(rgba(220, 53, 69, 0.65), rgba(252, 25, 25, 0.75)),url(IMG/homework-help.jpg);
    background-position: center;
}

.bg-panel--3{
    background-size: cover;
    background-color: #5c83cd;
    background-image: -webkit-linear-gradient(rgba(255, 185, 0, 0.70), rgba(253, 126, 20, 0.80)),url(IMG/board-meetings.jpg);
    background-image: linear-gradient(rgba(255, 185, 0, 0.70), rgba(253, 126, 20, 0.80)),url(IMG/board-meetings.jpg);
    background-position: center;
}


.dotlight {
    height: 15px;
    width: 15px;
    background-color: #f7f7f7;
    border-radius: 50%;
    display: inline-block;
  }
Footer
© 2022 GitHub, Inc.
Footer navigation
Terms
Privacy
Security
Status
Docs
Contact GitHub
Pricing
API
Training
Blog
About
