-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStyle.css
More file actions
119 lines (113 loc) · 2.07 KB
/
Style.css
File metadata and controls
119 lines (113 loc) · 2.07 KB
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
text-decoration: none;
}
html{
scroll-behavior: smooth;
}
.max-width{
max-width: 1300px;
padding: 0 80px;
margin: auto;
}
.navbar{
position: fixed;
width: 100%;
z-index: 999;
padding: 15px 0;
background: rgb(192, 108, 12);
font-family: 'Ubuntu', sans-serif;
transition: all 0.3s ease;
}
.navbar.sticky{
padding: 20px 0;
background: rgb(26, 146, 150);
}
.navbar .max-width{
display: flex;
align-items: center;
justify-content: space-between;
}
.navbar .logo a{
color: #fff;
font-size: 35px;
font-weight: 600;
}
.navbar .logo a span{
color: rgb(0, 0, 0);
transition: all 0.3s ease;
}
.navbar.sticky .logo a span{
color: rgb(0, 0, 0);
}
.navbar .menu li{
list-style: none;
display: inline-block;
}
.navbar .menu li a{
color: rgb(0, 0, 0);
font-size: 18px;
font-weight: 500;
margin-left: 25px;
transition: all 0.3s ease;
}
.navbar .menu li a:hover{
color: #ffffff;
}
/* menu button styling */
.menu-btn{
color: rgb(0, 0, 0);
font-size: 23px;
cursor: pointer;
display: none;
}
.scroll-up-btn{
position: fixed;
height: 45px;
width: 42px;
background: rgb(243, 146, 0);
right: 30px;
bottom: 30px;
text-align: center;
line-height: 45px;
color: #fff;
z-index: 9999;
font-size: 30px;
border-radius: 10px;
cursor: pointer;
opacity: 0;
pointer-events: none;
}
.scroll-up-btn.show{
opacity: 1;
pointer-events: auto;
}
/* home section styling */
.home{
display: flex;
height: 100vh;
color:rgb(0, 0, 0);
min-height: 500px;
background-size: cover;
font-family: 'Ubuntu', sans-serif;
}
.home .max-width{
margin: auto 0 auto 40px;
}
.home .home-content .text-1{
font-size: 27px;
}
.home .home-content .text-2{
font-size: 75px;
font-weight: 600;
margin-left: -3px;
}
.home .home-content .text-3{
font-size: 40px;
margin: 5px 0;
}
.home .home-content .text-1{
font-size: 27px;
}