File tree 4 files changed +25
-8
lines changed
course-page/individual-components/python-master-course/course-title
4 files changed +25
-8
lines changed Original file line number Diff line number Diff line change @@ -90,17 +90,34 @@ padding-top: 30px;
90
90
.udemy-info {
91
91
display : grid;
92
92
grid-template-columns : 1fr ;
93
+ text-align : center;
93
94
}
94
95
.price-info .middle {
95
96
display : inline-block;
96
- margin-bottom : 5 px ;
97
+ margin-bottom : 2 vh ;
97
98
}
99
+ .price-info
100
+ {
101
+ text-align : center;
102
+ }
103
+
98
104
.udemy-info a {
99
105
width : max-content;
100
106
margin-bottom : 10px ;
107
+ margin : auto;
108
+ margin-top : 1vh ;
101
109
}
102
110
iframe {
103
111
width : 300px ;
104
112
height : 200px ;
105
113
}
114
+ .udemy-info span
115
+ {
116
+ margin-top : 3vh ;
117
+ }
118
+ .course-title-left
119
+ {
120
+ margin-top : -10vh ;
121
+ text-align : center;
122
+ }
106
123
}
Original file line number Diff line number Diff line change 6
6
}
7
7
.header-banner-container img {
8
8
width : 100% ;
9
- margin-left : 80px ;
10
- margin-right : 80px ;
9
+ /* margin-left: 80px;
10
+ margin-right: 80px; */
11
11
}
12
12
.headerImagePhone {
13
13
display : none;
Original file line number Diff line number Diff line change @@ -7,12 +7,12 @@ const Navbar = () => {
7
7
const [ active , setActive ] = useState ( "nav__menu" ) ;
8
8
const [ toggleicon , setToggleicon ] = useState ( "nav__toggler" ) ;
9
9
const navToggle = ( ) => {
10
-
11
- if ( window . scrollY >= 50 ) {
10
+ if ( window . scrollY >= 50 )
11
+ {
12
12
active === 'nav__menu' ? setActive ( 'nav__menu nav__active' ) : setActive ( 'nav__menu' ) ;
13
13
toggleicon === 'nav__toggler' ? setToggleicon ( 'nav__toggler toggle' ) : setToggleicon ( 'nav__toggler' ) ;
14
+ }
14
15
}
15
- }
16
16
const [ navbar , setNavbar ] = useState ( false ) ;
17
17
const changeBackground = ( ) => {
18
18
if ( window . scrollY >= 50 )
Original file line number Diff line number Diff line change 61
61
.border-line {
62
62
display : none;
63
63
}
64
-
65
64
.nav__brand
66
65
{
67
66
margin-left : 21px ;
89
88
}
90
89
.nav__menu
91
90
{
92
- gap : 0 ;
91
+ gap : 0.5 vh ;
93
92
position : fixed;
94
93
justify-content : space-evenly;
95
94
top : 11.8vh ;
103
102
transform : translateX (100% );
104
103
transition : 0.5s ease-in-out;
105
104
}
105
+
106
106
}
107
107
/*Navbar Activated*/
108
108
.nav__active
You can’t perform that action at this time.
0 commit comments