-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
53 lines (46 loc) · 1.07 KB
/
styles.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
/* Custom styles if necessary */
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer utilities {
.line-clamp-3 {
overflow: hidden;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3;
}
}
.scrollbar-hide {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
.scrollbar-hide::-webkit-scrollbar {
display: none; /* Chrome, Safari, and Opera */
}
html, body {
height: 100%;
font-family: 'Open Sans', sans-serif;
scroll-behavior: smooth;
}
section {
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.custom-margin {
margin-left: 10%;
margin-right: 10%;
}
.header-container {
margin-left: 10%;
margin-right: 10%;
/* Optional: You can add max-width if you want to limit the width */
max-width: 1200px;
background-color: #f5f5f5; /* For visibility */
}
/* Styling the header */
header {
padding: 80px;
text-align: center; /* Center the text in the header */
}