Initial commit, added all of services and short about info
This commit is contained in:
commit
4229291ca4
12 changed files with 263 additions and 0 deletions
52
css/services.css
Normal file
52
css/services.css
Normal file
|
@ -0,0 +1,52 @@
|
|||
body {
|
||||
margin: 2rem;
|
||||
/* height: 100vh; */
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
text-align: center;
|
||||
padding: 2rem;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.service {
|
||||
border: 2px solid var(--special);
|
||||
border-radius: 5px;
|
||||
min-width: 100px;
|
||||
max-width: 350px;
|
||||
height: max-content;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
text-align: center;
|
||||
padding: 0.5rem;
|
||||
overflow: hidden
|
||||
}
|
||||
|
||||
.container {
|
||||
margin-top: 1rem;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 1rem;
|
||||
justify-content: center;
|
||||
align-items: stretch;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
.service p {
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
img {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
display: block;
|
||||
transform: scale(1);
|
||||
transition: transform 0.5s ease;
|
||||
}
|
||||
|
||||
img:hover {
|
||||
transform: scale(1.5);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue