-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
1,302 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,127 @@ | ||
@import "libs/reset.css"; | ||
|
||
@font-face { | ||
font-family: 'Apercu'; | ||
src: url("../fonts/Apercu_Regular.otf"); | ||
font-weight: 400; | ||
font-style: normal; | ||
} | ||
|
||
@font-face { | ||
font-family: 'Apercu'; | ||
src: url("../fonts/Apercu_Medium.otf"); | ||
font-weight: 500; | ||
font-style: normal; | ||
} | ||
|
||
* { | ||
-webkit-font-smoothing: antialiased; | ||
box-sizing: border-box; | ||
-webkit-box-sizing: border-box; | ||
} | ||
|
||
body { | ||
background-color: #DE5A5A; | ||
color: white; | ||
font-family: 'Apercu', sans-serif; | ||
font-size: 24px; | ||
font-weight: 400; | ||
text-align: center; | ||
} | ||
|
||
img { | ||
max-width: 100%; | ||
} | ||
|
||
.logo_container { | ||
margin-top: 0px; | ||
margin-bottom: 36px; | ||
} | ||
|
||
.logo { | ||
display: inline-block; | ||
vertical-align: middle; | ||
width: 60px; | ||
height: 50px; | ||
margin-right: 12px; | ||
} | ||
|
||
.logo_text { | ||
display: inline-block; | ||
vertical-align: middle; | ||
font-family: 'Apercu', sans-serif; | ||
font-weight: 500; | ||
font-size: 40px; | ||
} | ||
|
||
p { | ||
font-family: 'Apercu', sans-serif; | ||
font-weight: 400; | ||
margin: 0; | ||
padding: 0; | ||
font-size: 24px; | ||
line-height: 36px; | ||
} | ||
|
||
.link { | ||
display: inline-block; | ||
margin-top: 36px; | ||
} | ||
|
||
.link_image { | ||
width: 200px; | ||
height: 57px; | ||
} | ||
|
||
.phone_container { | ||
/*max-width: 100%;*/ | ||
max-width: 400px; | ||
} | ||
|
||
.phone { | ||
width: 100%; | ||
} | ||
|
||
.container { | ||
margin: 50px auto 0; | ||
padding: 20px; | ||
width: 100%; | ||
max-width: 950px; | ||
} | ||
|
||
.container:after { | ||
display: table; | ||
clear: both; | ||
content: ''; | ||
} | ||
|
||
.section_left, .section_right { | ||
width: 100%; | ||
margin-bottom: 36px; | ||
} | ||
|
||
@media (min-width: 1001px) { | ||
|
||
body { | ||
text-align: left; | ||
} | ||
|
||
.logo_container { | ||
margin-top: 200px; | ||
} | ||
|
||
.section_left { | ||
width: 50%; | ||
float: right; | ||
margin-bottom: 0px; | ||
} | ||
|
||
.section_right { | ||
width: 50%; | ||
float: left; | ||
} | ||
|
||
.phone_container { | ||
float: left; | ||
} | ||
} |
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,37 @@ | ||
<h1>hello</h1> | ||
<!DOCTYPE html> | ||
<html></html> | ||
<head> | ||
<title>Speak: An AI English Tutor</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="stylesheet" type="text/css" href="css/main.css"> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
|
||
<div class="section_left"> | ||
|
||
|
||
<div class="logo_container"> | ||
<img class="logo" src="images/speak_logo.png"> | ||
<span class="logo_text">Speak</span> | ||
</div> | ||
|
||
<p>Speak is designed to help you gain confidence speaking out loud in English. We put you in realistic conversations with real slang and give you feedback on how to sound more native.</p> | ||
|
||
<a class="link" href="https://itunes.apple.com/us/app/speak-practice-speaking-english/id1181737552?mt=8"> | ||
<img class="link_image" src="images/app_store_badge.png"> | ||
</a> | ||
|
||
</div> | ||
|
||
<div class="section_right"> | ||
|
||
|
||
<div class="phone_container"> | ||
<img class="phone" src="images/phone.png"> | ||
</div> | ||
|
||
</div> | ||
|
||
</div> | ||
</body> |
Oops, something went wrong.