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
64 changes: 63 additions & 1 deletion EasyHelp_2.0-main/static/styles/style.css
Original file line number Diff line number Diff line change
@@ -1 +1,63 @@
body {color :black;}
body {color :black;}


@font-face {
font-family: fuenteSecundaria;
src: url(../static/fonts/Shrikhand-Regular.ttf);
}

body {font-family: Arial, Helvetica, sans-serif;}

.navbar {
width: 100%;
background-color: #555;
overflow: auto;
}
.navbar a {
float: left;
padding: 12px;
color: white;
text-decoration: none;
font-size: 17px;
}
.navbar a:hover {
background-color: #000;
}

.active {
background-color: #04AA6D;
}

@media screen and (max-width: 500px) {
.navbar a {
float: none;
display: block;
}
}

ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
}
li {
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover {
background-color: #111;
}

.vertical-center {
text-align: center;
}

h1{text-align: left; font-family: fuenteSecundaria;}
66 changes: 2 additions & 64 deletions EasyHelp_2.0-main/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,71 +8,9 @@
<link rel="manifest" href="../static/images/favicon_io/site.webmanifest">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="../static/styles/style.css">
<title>EasyHelp</title>
<style type="text/css">

@font-face {
font-family: fuenteSecundaria;
src: url(../static/fonts/Shrikhand-Regular.ttf);
}

body {font-family: Arial, Helvetica, sans-serif;}

.navbar {
width: 100%;
background-color: #555;
overflow: auto;
}
.navbar a {
float: left;
padding: 12px;
color: white;
text-decoration: none;
font-size: 17px;
}
.navbar a:hover {
background-color: #000;
}

.active {
background-color: #04AA6D;
}

@media screen and (max-width: 500px) {
.navbar a {
float: none;
display: block;
}
}

ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
}
li {
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover {
background-color: #111;
}

.vertical-center {
text-align: center;
}

h1{text-align: left; font-family: fuenteSecundaria;}

</style>
<style></style>
</head>

<body>
Expand Down