-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlessonsStyles.css
More file actions
99 lines (82 loc) · 1.54 KB
/
lessonsStyles.css
File metadata and controls
99 lines (82 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
body{
font: 20px "Montserrat", sans-serif;
line-height: 1.8;
position: relative;
}
.container-fluid{
padding: 0px;
margin: 0px;
}
/*navabar styles*/
.navbar{
padding-top: 15px;
padding-bottom: 15px;
font-size: 16px !important;
border: 0;
border-radius: 0px;
margin-bottom: 0;
transition: 0.6s;
-webkit-transition: 0.6s; /*for safari*/
background: rgba(35,35,35, 0.55);
}
.navbarStateScrolled{ /*css class to append onto .navbar when document is scrolled*/
background: rgba(35,35,35,1);
padding-top: 11px;
padding-bottom: 11px;
box-shadow: 0px 5px 10px rgba(0,0,0,0.2);
}
.navbar li a, .navbar .navbar-brand{ /* make all navbar links white */
color: #ffffff !important;
}
.navbar-brand:hover{
color: #1abc9c !important;
}
.navbar-menu{
border: 0;
}
.navbar-menu:hover{
background-color: rgba(0,0,0,0) !important;
}
.icon-bar{
background-color: #ffffff !important;
}
/*generic lesson style*/
.bg-generic{
background-color: #ffffff;
padding-right: 50px;
padding-left: 50px;
padding-top: 70px;
padding-bottom: 70px;
}
.bg-generic-text h1{
font-size: 27px;
margin-top: 50px;
margin-bottom: 50px;
}
.bg-generic-text h3{
font-size: 18px;
}
.bg-generic-text p{
font-size: 16px;
}
.bg-generic-text li{
font-size: 16px;
}
.card{
background-color: #F5F5F5;
padding: 25px;
margin-bottom: 15px;
box-shadow: 0px 7px 10px rgba(0,0,0,0.3);
}
/*footer styles*/
.bg-footer{
background-color: #2f2f2f;
color: #ffffff;
padding-right: 50px;
padding-left: 50px;
padding-top: 70px;
padding-bottom: 70px;
}
.bg-footer-text p{
font-size: 16px;
}