-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
98 lines (86 loc) · 2.04 KB
/
style.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
/* Basic Reset */
body, h3, p, a {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: sans-serif;
}
body {
background-color: #f0f0f0; /* Light background */
color: #333; /* Dark text */
line-height: 1.6;
}
.container {
width: 80%; /* Adjust width as needed */
max-width: 600px; /* Maximum width */
margin: 50px auto; /* Center the container */
padding: 40px;
background-color: #fff; /* White container background */
border-radius: 8px; /* Rounded corners */
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}
.intro {
font-size: 18px;
margin-bottom: 20px;
text-align: center;
}
h3 {
font-size: 24px;
margin-bottom: 10px;
}
a {
color: #007bff; /* Blue links */
text-decoration: none;
font-weight: 500;
}
a:hover {
text-decoration: underline;
}
/* Notch Styles */
.notch-container {
position: relative;
width: 100%;
height: 100px; /* Adjust height as needed */
background-color: #e9ecef; /* Background color of the notch area */
}
.notch {
position: absolute;
top: 0;
left: 0;
width: 200px; /* Adjust width as needed */
height: 100px;
background-color: #fff;
clip-path: polygon(0% 0%, 100% 70%, 100% 100%, 0% 100%, 0% 70%);
display: flex;
align-items: center;
padding-left: 20px; /* Adjust this value */
}
.logo {
max-width: 80%;
max-height: 80%;
}
}
.logo {
max-width: 80%;
max-height: 80%;
}
.content {
padding: 40px;
}
.notch {
position: absolute;
top: 0;
left: 0; /* Change left: 50% to left: 0 */
/* transform: translateX(-50%); Remove this line */
width: 200px; /* Adjust width as needed */
height: 100px; /* Adjust height as needed */
background-color: #fff;
clip-path: polygon(0% 0%, 100% 70%, 100% 100%, 0% 100%, 0% 70%); /* Creates the notch shape */
display: flex;
align-items: center; /* Align items vertically */
padding-left: 20px; /* Add padding to move logo away from left edge */
}
.logo {
max-width: 80%;
max-height: 80%;
}