This commit is contained in:
2024-06-19 12:29:37 +02:00
parent 5af38630ff
commit f076d20a62
2 changed files with 58 additions and 34 deletions

View File

@@ -290,40 +290,6 @@
<section>
<!-- first part -->
<!-- <div class="slick-carousel" id="first-part-home" >
<div>
<div class="textbox mx-md-3 mx-lg-3 mx-0 d-flex flex-column justify-content-start align-items-center">
<h2 class="h2-first">Full Cycle Business Management</h2>
<p style="text-align: center; padding: 0 30px;">
Whether your company looks for a financial consulting, investment risks assessments or an interim, HR
management, were ready to provide that for you.We have a proven expertise in any process, that a modern day
business lives and works through.
</p>
<input class="read-more" type="submit" value="read more">
</div>
</div>
<div>
<div class="textbox mx-md-3 mx-lg-3 mx-0 d-flex flex-column justify-content-start align-items-center">
<h2 class="h2-first">Financial Consulting Services</h2>
<p style="text-align: center; padding: 0 30px;">
Our team provides expert financial consulting to help your business make informed decisions and achieve its goals.
</p>
<input class="read-more" type="submit" value="read more">
</div>
</div>
<div>
<div class="textbox mx-md-3 mx-lg-3 mx-0 d-flex flex-column justify-content-start align-items-center">
<h2 class="h2-first">Investment Risk Assessment</h2>
<p style="text-align: center; padding: 0 30px;">
We assess investment risks thoroughly to ensure your investments are safe and profitable.
</p>
<input class="read-more" type="submit" value="read more">
</div>
</div>
</div> -->
<div class="slick-carousel d-flex justify-content-start align-items-center">
<div class="first-part">
<div class="textbox mx-md-3 mx-lg-3 mx-0 d-flex flex-column justify-content-start align-items-center">

View File

@@ -50,15 +50,31 @@ if (isset($_GET['search_text'])) {
?>
<style>
body{
display: flex;
flex-direction: column;
align-items: center;
justify-content: start;
background-image: url('assets/images/image10.jpg');
height: 100%;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
h2{
color: #15c1cb;
font-size: 20px;
}
table {
font-size: 10px;
width: fit-content;
border-collapse: collapse;
}
table, th, td {
border: 1px solid black;
background-color: #f2f2f2;
}
th, td {
padding: 8px;
@@ -68,4 +84,46 @@ if (isset($_GET['search_text'])) {
background-color: #f2f2f2;
color: #15c1cb;
}
#btn-back{
margin-top:30px;
}
@media screen and (min-width:768px) {
body{
justify-content: center;
}
table{
font-size: 20px;
}
h2{
font-size: 50px;
}
}
@media screen and (min-width:992px) {
body{
justify-content: center;
}
table{
font-size: 30px;
}
h2{
font-size: 50px;
}
}
</style>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Search people</title>
<link rel="stylesheet" href="style/style.css">
</head>
<body>
<div id="btn-back">
<a href="people.php"><input class="view-more" type="submit" value="Back"></a>
</div>
</body>
</html>