3 Commits
Author SHA1 Message Date
emil28092005 bd15db3b65 Update styles.css 2024-08-28 19:52:32 +03:00
emil28092005 b9fb4f12b4 kinda MVP1 2024-08-27 18:45:38 +03:00
emil28092005 9e4ef2afe2 second attempt 2024-08-27 10:39:35 +03:00
4 changed files with 125 additions and 93 deletions
+15
View File
@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 24.1.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" baseProfile="basic" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
y="0px" viewBox="0 0 32 32" xml:space="preserve">
<g id="Layer_2" style="display:none;">
</g>
<g id="Layer_1">
<circle style="fill:none;stroke:#000000;stroke-width:2;stroke-miterlimit:10;" cx="16" cy="16" r="12"/>
<path style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;" d="M21.786,11
c-4.989-0.508-11.286,2.682-13.244,5.627c1.169,1.409,3.046,1.476,5.819,1.014c0.762,2.633,3.469,4.307,5.072,4.27
C21.27,20.308,22.521,13.439,21.786,11z"/>
<line style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;" x1="16.755" y1="15.434" x2="14.361" y2="17.641"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 928 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 949 B

+51 -44
View File
File diff suppressed because one or more lines are too long
+59 -49
View File
@@ -2,78 +2,88 @@
box-sizing: border-box;
}
body,
header,
section,
footer,
h1,
h2,
h3,
h4,
p {
font-weight: normal;
font-family: 'Sans', sans-serif;
body ,header, section, footer{
margin: 0;
border: 1px solid black;
background-color: rgb(255, 0, 0,.1);
padding: 0;
}
h1,h2,h3,h4,h5,h6,p{
text-shadow: black 4px 4px 3px;
margin: 0;
color: #e4c373;
font-family: 'MesloLGS NF', sans-serif;
}
h1 {
text-align: center;
font-weight: 600;
margin: 0;
}
p {
font-weight: 550;
}
.header {
height: 100vh;
background-color: aliceblue;
text-align: center;
background-color: saddlebrown;
width: 100%;
}
.header-name{
color: #bdad60;
}
.header-image {
display: block;
height: 85%;
margin: auto;
display: inline-block;
width: 95%;
}
.header-name {
.section {
width: 100%;
display: inline-block;
text-align: center;
padding: 20px;
justify-content: space-evenly;
background: radial-gradient(circle, rgba(164,126,10,1) 0%, rgba(139,69,19,1) 100%);
margin: 0 auto;
}
.card {
width: 50%;
height: 250px;
background-color: antiquewhite;
}
.card-image {
display: flex;
height: 95%;
width: 95%;
margin-top: .75%;
margin-left: .75%;
display: inline-block;
width: 300px;
height: 300px;
margin: 10px;
background-color: saddlebrown;
}
.card-name {
margin: 0;
text-align: center;
}
.card-head-box {
display: inline-block;
height: 85%;
width: 50%;
margin: 0;
background-color: rgba(255, 0, 0, 0.337);
}
.card-description-box {
display: inline-block;
height: 85%;
width: 45%;
padding: 10%;
margin: 0;
background-color: aqua;
.card-image {
display: block;
margin: 0 auto;
width: 90%;
border: solid 3px #2a1508;
}
.card-description {
display: flex;
margin: auto;
margin: 0;
text-align: center;
}
.footer {
background-color: saddlebrown;
text-align: center;
height: 22vh;
width: 100%;
}
.fancy-external-border{
border: solid 5px #2a1508;
box-shadow: 10px 10px 20px #2a1508;
}