-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
182 lines (146 loc) · 3.98 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
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
/* Define a style for the body element */
body {
font-family: 'ProductSans';
background-color: #ffffff;
margin: 0;
padding: 0;
overflow: hidden;
}
@font-face {
font-family: 'ProductSans'; /* Name for your custom font */
src: url('fonts/ProductSans-Regular.ttf') format('truetype'); /* URL to your font file */
}
@font-face {
font-family: 'ProductSansB'; /* Name for your custom font */
src: url('fonts/ProductSans-Bold.ttf') format('truetype'); /* URL to your font file */
}
/* Style headings */
h1 {
font-family: 'ProductSans';
color: #333;
font-size: 24px;
}
/* Style paragraphs */
p {
font-family: 'ProductSans';
line-height: 1.5;
margin-bottom: 15px;
}
.header {
display: flex; /* Use flexbox to create a horizontal layout */
align-items: center; /* Vertically align items */
padding: 1px; /* Padding for text container */
background-color: #ffffff; /* Background color */
}
.cir-img {
width: 50px; /* Adjust the width and height to your desired circle size */
height: 50px;
overflow: hidden;
border-radius: 50%; /* Set border-radius to 50% to create a circle */
margin-left: 20px;
margin-right: 10px;
}
.cir-img img {
width: 100%; /* Make sure the image takes up the full width of the container */
height: auto; /* Maintain the image's aspect ratio */
display: block; /* Remove any extra spacing around the image */
}
.header p {
margin-top: 15px;
font-size: 25px;
}
.curve-img {
width: 240px; /* Adjust the width and height to your desired circle size */
height: 240px;
overflow: hidden;
border-radius: 20%; /* Set border-radius to 50% to create a circle */
margin-left: 1037px;
margin-top: -110px;
box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.582);
/* 4px horizontal offset, 4px vertical offset, 6px blur radius, shadow color */
}
.curve-img img {
width: 100%; /* Make sure the image takes up the full width of the container */
height: auto; /* Maintain the image's aspect ratio */
display: block; /* Remove any extra spacing around the image */
}
hr {
border: none;
border-top: 1px solid #0000003b; /* Change the line color and thickness */
}
.mod-text p {
font-family: 'ProductSansB';
margin-left: 80px;
margin-top: 50px;
}
.page-container {
display: flex;
position: relative;
}
.page {
width: 100vw;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
opacity: 0;
position: absolute;
transition: opacity 0.5s;
}
.page1 {
background-color: #2196F3;
}
.page2 {
background-color: #4CAF50;
}
.overlay {
position: fixed;
width: 100vw;
height: 100vh;
background: rgba(0, 0, 0, 0.7);
opacity: 0;
pointer-events: none;
z-index: 1;
transition: opacity 0.5s;
}
.transition-link {
text-decoration: none;
padding: 10px 20px;
background: #FFC107;
color: #333;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background 0.3s, color 0.3s;
}
.transition-link:hover {
background: #333;
color: #FFF;
}
.contact {
position: absolute;
text-align: center;
bottom: 0;
left: 0;
right: 0;
background-color: #ffffff; /* Background color */
color: #ffffff; /* Text color */
padding: 10px; /* Padding for text container */
}
.contact a {
color: rgb(12, 97, 209); /* Link color */
text-decoration: none; /* Remove underlines from links */
}
.contacts {
bottom: 0;
left: 0;
right: 0;
background-color: #ffffff; /* Background color */
color: #ffffff; /* Text color */
padding: 10px; /* Padding for text container */
}
.contacts a {
color: rgb(28, 60, 240); /* Link color */
text-decoration: none; /* Remove underlines from links */
}