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 packages/dapp/src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>reality.eth crowd-sourced smart contract oracle dapp</title>
<meta name="description" content="Reality.eth: A system for getting the answer to a question on the Ethereum blockchain">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
Expand Down
34 changes: 19 additions & 15 deletions packages/dapp/src/styles/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,9 @@ h1.logo {
background: url(../image/realitio_header_logo.png) top left no-repeat;
background-size: contain;
position: absolute;
left: -100px;
width: 317px;
left: -50px;
width: 40%;
max-width: 317px;
height: 105px;
margin-left: 0;
margin-top: 0;
Expand Down Expand Up @@ -411,7 +412,8 @@ body.pushing .page-qa #push-icon {
}

#post-a-question-button {
width: 240px;
width: 40%;
max-width: 240px;
height: 60px;
line-height: 60px;
text-align: center;
Expand Down Expand Up @@ -521,7 +523,6 @@ body.pushing .page-qa #push-icon {
margin: 0 auto;
background-color: transparent;
max-width: 1100px;
min-width: 980px;
}

// Filter
Expand Down Expand Up @@ -595,7 +596,8 @@ body.pushing .page-qa #push-icon {
#questions-container {
padding: 40px;
box-shadow: 1px 1px 10px rgba(0,0,0,.2);
margin: 20px auto 80px;
margin: 20px auto 20px;
align-items: center;
background-color: #fff;
}

Expand Down Expand Up @@ -891,7 +893,8 @@ a.questions__item__title:hover {
right: 0;
overflow: hidden;
float: right;
width: 230px;
width: 25%;
max-width: 230px;
margin-top: -52px;
text-align: left;
height: 68px;
Expand All @@ -907,7 +910,8 @@ a.questions__item__title:hover {
right: 0;
overflow: hidden;
float: right;
width: 230px;
width: 25%;
max-width: 230px;
text-align: left;
font-family: $font-family-sans;
color: $light-gray;
Expand Down Expand Up @@ -963,14 +967,14 @@ a.questions__item__title:hover {

.questions__item.has-answer a.questions__item__title,
.questions__item.no-answers a.questions__item__title {
margin-right: 260px;
margin-right: 25%;
height:2.4em;
}

.questions__item__footer {
font-size: 13px;
color: $light-gray;
margin-right: 270px;
margin-right: 100px;
}

.loadmore-button {
Expand Down Expand Up @@ -1166,7 +1170,6 @@ li.site-footer-nav__divider {
// site footer nav --secondary
#site-footer-nav--secondary {
max-width: 1024px;
min-width: 980px;
margin: 0 auto;
padding: 42px 0;
}
Expand Down Expand Up @@ -1319,25 +1322,25 @@ footer .cols ul {

.rcbrowser--postaquestion,
.rcbrowser--postaquestion .rcbrowser-header {
width: 800px;
width: 100%;
}

.rcbrowser--qa-detail,
.rcbrowser--qa-detail .rcbrowser-header {
width: 800px;
width: 75%;
}

.rcbrowser--your-qa,
.rcbrowser--your-qa .rcbrowser-header {
width: 800px;
width: 75%;
}

.rcbrowser--qa-detail--resolved .current-answer-container {
margin: 0 0 15px 0;
}

.rcbrowser--help-center, .rcbrowser--help-center .rcbrowser-header {
width: 800px;
width: 75%;
}
.rcbrowser--help-center {
height: 100%;
Expand Down Expand Up @@ -2359,7 +2362,8 @@ a.reopener-question-link {
}

.rcbrowser--qa-detail .rcbrowser-submit {
width: 350px;
width: 50%;
max-width: 350px;
display: inline-block;
}

Expand Down