Initial commit, added all of services and short about info

This commit is contained in:
Kira Edges 2025-05-11 19:54:18 +04:00
commit 4229291ca4
Signed by: edges
SSH key fingerprint: SHA256:RT4iUXBlbU5TGAtoYgAX7B0MQ9VaDbhv3/lTdrVrQEA
12 changed files with 263 additions and 0 deletions

11
css/about.css Normal file
View file

@ -0,0 +1,11 @@
body {
margin: 2rem;
/* height: 100vh; */
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
text-align: center;
padding: 2rem;
gap: 1rem;
}

39
css/cute.css Normal file
View file

@ -0,0 +1,39 @@
:root {
--main-color: #EFB6C8;
--background-color: #8174A0;
--text-color: #FFD2A0;
--button-text-color: #FFE8CE;
--special: #A888B5;
}
body {
background-color: var(--background-color);
color: var(--text-color) !important;
font-family: 'Montserrat', sans-serif;
text-decoration: none !important;
}
a {
text-decoration: none;
color: var(--special);
}
.button {
display: inline-block;
padding: 1rem 2rem;
color: var(--button-text-color);
background-color: var(--main-color);
border-radius: 5px;
border: 2px solid var(--special);
font-weight: bold;
transform: translateY(0);
transition: transform 0.5s ease;
}
.button:hover {
transform: translateY(-10px);
}
small {
font-size: 0.5rem;
}

15
css/index.css Normal file
View file

@ -0,0 +1,15 @@
body {
margin: 0;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
text-align: center;
}
.buttons {
margin-top: 20px;
display: flex;
flex-direction: row;
}

52
css/services.css Normal file
View 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);
}