Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Recent updates #1

Merged
merged 6 commits into from
Apr 14, 2019
Merged
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
4 changes: 2 additions & 2 deletions email-templates/welcome.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
line-height: 100%;
}

body {
body {
margin: 0;
padding: 0;
-webkit-text-size-adjust: 100%;
Expand Down Expand Up @@ -210,4 +210,4 @@
</div>
</body>

</html>
</html>
17 changes: 17 additions & 0 deletions public/stylesheets/homepage.css
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,14 @@
color: white;
}

#homepage main #intro .intro-text form button:hover {
background: white;
border-radius: 6px;
color: #11144c;
font-weight: 600;
border: 1px solid #11144c;
}

#homepage main #intro .intro-img {
text-align: center;
}
Expand Down Expand Up @@ -130,6 +138,15 @@
color: white;
}

#homepage #pay-agent .pay-header button:hover {
background: white;
padding: 15px;
margin-top: 25px;
color: #11144c;
font-weight: 600;
border: 1px solid #11144c;
}

@media screen and (max-width: 786px) {
#homepage #pay-agent .pay-header h1 {
font-size: 14px;
Expand Down
2 changes: 1 addition & 1 deletion public/stylesheets/manage_jobs.css
Original file line number Diff line number Diff line change
Expand Up @@ -179,4 +179,4 @@
.admin_body .fixed-header {
left: 30%;
}
}
}
4 changes: 4 additions & 0 deletions public/stylesheets/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ html {
scroll-behavior: smooth;
}

.subscribe:hover{
color: #11144c;
}

body {
margin: 0;
color: #11144c;
Expand Down
2 changes: 1 addition & 1 deletion views/index.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<div class="input-group">
<input type="email" class="form-control" placeholder="Email" name="email">
<div class="input-group-append">
<button class="btn" type="submit">Subscribe</button>
<button class="btn subscribe" type="submit">Subscribe</button>
</div>
</div>
</form>
Expand Down
1 change: 1 addition & 0 deletions views/layouts/main.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf"
crossorigin="anonymous">
<link rel='stylesheet' href='/stylesheets/style.css' />
<link rel="shortcut icon" href="images/code2.png" type="image/x-icon">
</head>

<body>
Expand Down