-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcourses.css
163 lines (137 loc) · 3.05 KB
/
courses.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
@import url(https://fonts.googleapis.com/css?family=Open+Sans);
body{
background-image: url("background.jpg");
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
width: 100%;
height: 100vh;
font-family: 'Open Sans', sans-serif;
}
body{
margin: 0;
padding: 0;
align-items: center;
justify-content: center;
min-height: 100vh;
}
.navbar {
position: absolute;
width: 1540px;
height: 69px;
left: 0px;
top: 0px;
background: linear-gradient(90.23deg, #581ABC 2.86%, rgba(192, 13, 255, 0.84) 67.46%, rgba(67, 255, 255, 0.69) 102.88%);
/* background: linear-gradient(90.23deg, #8B3DD9 2.86%, rgba(68, 246, 246, 0.36) 102.88%); */
}
.heading {
text-align: center;
color: rgb(255, 255, 255);
font-family: 'Courier New', Courier, monospace;
font-weight: bold;
}
.container {
margin-top: 20px;
}
/* Carousel Styles */
.carousel-indicators .active {
background-color: #2980b9;
}
.carousel-inner img {
width: 100%;
max-height: 460px
}
.carousel-control {
width: 0;
}
.carousel-control.left,
.carousel-control.right {
opacity: 1;
filter: alpha(opacity=100);
background-image: none;
background-repeat: no-repeat;
text-shadow: none;
}
.carousel-control.left span {
padding: 15px;
}
.carousel-control.right span {
padding: 15px;
}
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-prev,
.carousel-control .icon-next {
position: absolute;
top: 45%;
z-index: 5;
display: inline-block;
}
.carousel-control .glyphicon-chevron-left,
.carousel-control .icon-prev {
left: 0;
}
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next {
right: 0;
}
.carousel-control.left span,
.carousel-control.right span {
background-color: #000;
}
.carousel-control.left span:hover,
.carousel-control.right span:hover {
opacity: .7;
filter: alpha(opacity=70);
}
/* Carousel Header Styles */
.header-text {
position: absolute;
top: 20%;
left: 1.8%;
right: auto;
width: 96.66666666666666%;
color: #fff;
}
.header-text h2 {
font-size: 40px;
}
.header-text h2 span {
background-color: #2980b9;
padding: 10px;
}
.header-text h3 span {
background-color: #000;
padding: 15px;
}
.btn-min-block {
min-width: 170px;
line-height: 26px;
}
.btn-theme {
color: #fff;
background-color: transparent;
border: 2px solid #fff;
margin-right: 15px;
}
.btn-theme:hover {
color: #000;
background-color: #fff;
border-color: #fff;
}
.wrapper {
display:flex;
margin-top: 5%;
margin-left: 5%;
color: rgb(62, 103, 198);
justfiy-content:space-between;
width: 60vmax; }
.box {
flex: 0 0 40%;
height: 100%;
margin: 5%;
text-align:center;
background: linear-gradient(180deg, #766c6c 0%, #13101b 95.1%);
border-radius: 15px;
}