Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Prawy126 committed Jan 10, 2024
1 parent b6e992b commit 5d1edb1
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 21 deletions.
21 changes: 16 additions & 5 deletions projekt/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
animation: hoverShake 0.15s linear 3;
}
.prawy{
width: 60%;
width: 20%;
float:right;
display: flex;
flex-direction: row-reverse;
Expand All @@ -84,13 +84,20 @@
.flex{
display: flex;
}
.container-logo{
font-size: 90px;
display: flex;
}
.search-container{
font-size: 15px;
}
</style>
</head>
<body>
<header>
<div class="lewy">
<div class="flex">
<div class="container">
<div class="container-logo">
<div class="L">L</div>
<div class="outter">
<div class="mid"></div>
Expand All @@ -99,7 +106,7 @@
</div>
</div>
</div>
</div>

<div class="prawy">
<div class="search-container">
<input type="text" name="search" placeholder="Search..." class="search-input">
Expand All @@ -115,6 +122,7 @@
</header>

<nav>

<div class="pasek">
<div id="container">
<ul id="menu">
Expand Down Expand Up @@ -151,8 +159,10 @@
</div>

</nav>
<section></section>
<main>



<main>
<div>
<div class="slider">
<div class="slides">
Expand Down Expand Up @@ -275,6 +285,7 @@ <h3>Windows</h3>
</div>
</div>
</main>
</main>
<footer>
<!-- <button class="send">
<i class="fa fa-paper-plane"></i>
Expand Down
31 changes: 15 additions & 16 deletions projekt/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,11 @@ body {
nav{

display: flex;

justify-content: space-around;
align-items: center;
background-color: #ccc2cc;
}
.pasek{

}

#menu {
align-items: center;
justify-content:space-between;
Expand Down Expand Up @@ -170,7 +169,7 @@ body {
color: white;
text-align: center;
}
.container .card .face.face1 .content a{
.container .card .face.face1 .content button{
transition: .5s;
}
.container .card .face.face2{
Expand All @@ -187,13 +186,13 @@ body {
.container .card:hover .face.face2{
transform: translateY(0);
}
.container .card .face.face2 .content p, a{
.container .card .face.face2 .content p, button{
font-size: 10pt;
margin: 0 ;
padding: 0;
color:#333;
}
.container .card .face.face2 .content a{
.container .card .face.face2 .content button{
text-decoration:none;
color: black;
box-sizing: border-box;
Expand All @@ -202,7 +201,7 @@ body {
margin: 15px 0 0;
display: inline-block;
}
.container .card .face.face2 .content a:hover{
.container .card .face.face2 .content button:hover{
background: #333 ;
color: whitesmoke;
box-shadow: inset 0px 0px 10px #00000080;
Expand Down Expand Up @@ -303,10 +302,10 @@ header {
height: 80px;
border-radius: 80px 0 0 80px;
border-left: solid 5px #7D1935 ;
-webkit-animation-name: spin;
-webkit-animation-duration: 1s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
animation-name: spin;
animation-duration: 1s;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
.mid {
top: 15px;
Expand All @@ -316,10 +315,10 @@ header {
height: 50px;
border-radius: 50px 0 0 50px;
border-left: solid 5px #B71427;
-webkit-animation-name: spin;
-webkit-animation-duration: 3s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
animation-name: spin;
animation-duration: 3s;
animation-iteration-count: infinite;
animation-timing-function: linear;
}

@-webkit-keyframes spin {
Expand Down

0 comments on commit 5d1edb1

Please sign in to comment.