Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions error.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
I added a new issue in format of text document.
1 change: 1 addition & 0 deletions new_issue.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This is a new issue I found
1 change: 1 addition & 0 deletions responsive_error.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
There is an error with the responsiveness for phones when the report is pressed.
1 change: 1 addition & 0 deletions web/cobrands/popravitodev/base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ $right: right;
color: white;
padding: 16px;
text-align: center;
height: 10vh;
}

body {
Expand Down
1 change: 0 additions & 1 deletion web/cobrands/sass/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ body {

p {
font-size: 1em;
font-weight: normal;
margin: 0 0 1em;
}

Expand Down
74 changes: 74 additions & 0 deletions web/cobrands/sass/idea.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Popravi.to</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/media.css">
<link href="img/favicon.png" >
</head>
<body>

<nav>
<h1>Popravi<span style="color: #99bfe1;">.to</span></h1>

<ul>
<li><a href="#"><span style="color: #000;">Prijavite Problem</span> </a></li>
<li><a href="#">Prijavite se</a></li>
<li><a href="#">Sve prijave </a></li>
<li><a href="#"> Lokalna upozorenja </a></li>
<li><a href="#">Pomoc</a></li>
<li><a href="#">Podrska korisnika</a></li>
</ul>
</nav>

<script src="script.js"></script>
</body>
</html>



!!!!!!!!!!!!!!!1
CSSS

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Open Sans", sans-serif;
font-optical-sizing: auto;
color: #fff;
}

nav {
background-color: #1a4f7f;
max-width: 1500px;
display: flex;
justify-content: space-between;
margin: 0 auto;
align-items: center;
padding: 0px 20px 0px 20px;
border-radius: 40px;
height: 10vh;
}
nav h1{
font-size: 2.2rem;
}
ul{
display: flex;
}
ul li{
list-style-type: none;
padding: 20px;
transition: 0.6s ease-in-out;
}
ul li:hover{
background-color: #041d35;
border-radius: 20px;
}
ul li a{
text-decoration: none;
}