-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathresources.css
150 lines (131 loc) · 2.38 KB
/
resources.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
/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */
/* Carousel Animation */
.carousel {
margin-top: 1rem;
margin-bottom: 6rem;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
bottom: 3rem;
z-index: 10;
color: black;
}
.carousel-caption h {
bottom: 3rem;
z-index: 10;
color: black;
}
/* Declare heights because of positioning of img element */
.carousel-item {
height: 36rem;
}
@media (max-width: 540px){
.carousel-item{
height: 30rem;
}
}
/* Adjusting the image */
.carousel-item > a > img {
position: absolute;
top: 0;
left: 0;
min-width: 100%;
height: 100%;
}
/* Removal of text decoration */
.carousel-control-next-icon,
.carousel-control-prev-icon {
text-decoration: none;
}
/* Designing the Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
background-image: none;
font-size: 1.8rem;
}
.carousel-control-next-icon:after {
content: "";
font-size: 60px;
font-weight: 500;
color: rgb(255, 255, 255);
}
.carousel-control-prev-icon::before {
content: "";
font-size: 60px;
font-weight: 500;
color: rgb(255, 255, 255);
}
/* Styling Learn More Button */
.learn-more a {
text-decoration: none;
color: #fff;
}
/* Captioni-Heading */
.carousel-caption p {
color: white;
}
/* Styling the Heading */
.webLearningHeading{
font-size: 50px;
margin-top: 100px;
}
/* Styling the line */
hr.webLearningLine {
height: 3px;
color: #fff;
}
/* Cards */
.webDevelopmentRequirements {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
grid-column-gap: 20px;
grid-row-gap: 20px;
margin-top: 20px;
}
.mycard {
display: flex;
background-color: #fff;
color: black;
flex-direction: column;
max-height: 35rem;
max-width: 25rem;
/* border-radius: 30px; */
border-radius: 5px;
}
.myheader {
display: flex;
padding: 15px 10px;
align-items: center;
justify-content: start;
border-bottom: 2px solid gray;
}
.myheader img {
width: 5em;
height: 4em;
}
.mytitle {
align-self: center;
margin-left: 20px;
font-size: 20px;
}
.mycontent {
overflow: auto;
margin: 0px 8px 4px 8px;
}
.links a {
text-decoration: none;
text-transform: capitalize;
margin: 5px;
}
.channels a {
text-decoration: none;
text-transform: capitalize;
margin: 5px;
}
.channels {
margin-top: 10px;
}
.footer{
margin-top: 3em;
}