-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.css
126 lines (109 loc) · 2 KB
/
app.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--red: #dc3545;
}
/*! navbar */
/* .navbar{
background-color: rgb(124, 139, 139) !important;
} */
.navbar .navbar-nav {
text-transform: uppercase;
font-size: 1.2rem;
font-weight: 600;
}
.navbar .nav-link {
transition: color 0.5s;
}
.navbar .nav-link:hover {
color: var(--red);
}
.logo{
text-shadow: 3px 3px 3px black;
color: brown;
font-size: 2rem;
font-weight: 200%;
}
/*! CAROUSEL */
.carousel-item {
max-height: calc(100vh - 88px);
}
.carousel-caption h5 {
color: var(--red);
font-size: 2.4rem;
text-shadow: 3px 3px 3px black;
}
.carousel-caption p {
text-shadow: 3px 3px 3px black;
font-weight: 600;
}
.carousel-caption .btn {
width: 7rem;
}
.carousel-caption {
bottom: 15rem;
}
.carousel-indicators {
gap: 0.7rem;
}
.carousel-indicators button {
background-color: var(--red) !important;
height: 0.7rem !important;
width: 3rem !important;
}
/*! ABOUT US */
/*! INSTRUCTORS */
section#instructors .card {
transition: transform 0.4s;
cursor: pointer;
}
section#instructors .card:hover {
transform: scale(1.03);
transition: transform 0.4s;
}
section#instructors i {
transition: opacity 0.6s;
}
section#instructors i:hover {
opacity: 0.5;
}
/*! COURSES */
.nav-pills .nav-link.active {
background-color: var(--red);
}
.nav-pills .nav-link {
color: white;
font-size: 1.1rem;
}
/*! FOOTER */
footer i {
transition: color 0.8s;
margin-right: 0.8rem;
cursor: pointer;
}
footer i:hover {
color: var(--red);
}
/*! BUTTON UP */
.btn-up {
position: fixed;
bottom: 1rem;
right: 1rem;
color: white;
background-color: var(--red);
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.3rem;
text-decoration: none;
}
.btn-up:hover {
transform: scale(1.2);
color: black;
}