-
Notifications
You must be signed in to change notification settings - Fork 3
/
videos.css
123 lines (106 loc) · 1.78 KB
/
videos.css
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
* {
font-family: 'open sans';
font-weight: 400;
}
body {
font-family: "Open Sans";
margin: auto;
scroll-behavior: smooth;
}
.navbar-brand {
font-size: 30px;
padding-left: 20px;
padding-right: 20px;
}
.navbar {
font-size: 20px;
}
.nav-item {
padding-top: 20px;
padding-left: 20px;
padding-right: 20px;
padding-bottom: 20px;
}
.nav-item:hover {
background-color: #FFD36E;
}
.dropdown-item:hover {
background-color: #FFD36E;
}
h1 {
margin: 4em 0;
padding-top: .5em;
font-family: 'roboto';
font-size: 2.3em;
background-color: #FFD36E;
width: 14.5em;
height: 2em;
display: flex;
justify-content: center;
}
h2 {
font-size: 2.5em;
margin-top: 1.5em;
}
#body {
align-items: center;
display: flex;
flex-direction: column;
}
.carousel {
overflow: hidden;
}
#myCarousel, #myCarousel2 {
display: flex;
justify-content: space-between;
align-self: center;
width: 80%;
margin: 9em 3em 0;
}
.carousel-control-prev{
background-image: none;
color: black;
background-color: #FFD36E;
height: 3em;
width: 3em;
border-radius: 1em;
margin-top: 20%;
opacity: 1;
}
.carousel-control-next{
background-image: none;
color: black;
background-color: #FFD36E;
height: 3em;
width: 3em;
border-radius: 1em;
margin-top: 20%;
opacity: 1;
}
.carousel-inner {
display: flex;
justify-content: center;
margin: auto;
width: 35em;
}
.carousel-item.active {
display: flex;
justify-content: center;
}
video {
height: 20em;
}
p {
margin: 15em 0;
}
i {
color: black;
}
@media only screen and (min-width: 1000px) {
.carousel-inner {
width: 62em;
}
video {
height: 35em;
}
}