-
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
7 changed files
with
675 additions
and
273 deletions.
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
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,229 @@ | ||
body, | ||
html { | ||
height: 100%; | ||
} | ||
|
||
body { | ||
background-color: #fff; | ||
color: #000; | ||
font-size: 14px; | ||
font-family: arial, sans-serif; | ||
} | ||
|
||
|
||
.navbar { | ||
padding: 0.7rem 0 !important; | ||
} | ||
|
||
.navbar-brand { | ||
padding-left: 8px; | ||
} | ||
|
||
.navbar a { | ||
font: 13px/27px Roboto,Arial,sans-serif; | ||
white-space: nowrap; | ||
} | ||
|
||
.navbar .nav-link:hover { | ||
text-decoration: underline; | ||
} | ||
|
||
#google-apps { | ||
height: 40px !important; | ||
width: 40px !important; | ||
} | ||
|
||
#google-apps:hover, #google-acc:hover { | ||
background-color: #F0F0F0 | ||
} | ||
|
||
.title { | ||
color: #d93025; | ||
border-bottom: 1px solid #ebebeb; | ||
} | ||
|
||
.title h1 { | ||
font-size: 20px; | ||
margin-left: 21px; | ||
margin-top: 0; | ||
margin-bottom: 0; | ||
padding: 1.4rem 1.5rem 1.6rem 1.5rem; | ||
} | ||
|
||
main section { | ||
max-width: 1203px; | ||
min-width: 200px; | ||
width: 96%; | ||
font-size: 13px; | ||
padding: 2.8rem 2.81rem; | ||
|
||
.subtitles { | ||
margin-bottom: 18px; | ||
} | ||
|
||
.subtitle-1, .subtitle-2 { | ||
margin-bottom: 0; | ||
} | ||
|
||
.subtitle-1 { | ||
font-size: 16px; | ||
} | ||
|
||
.subtitle-2 { | ||
padding-top: 3px; | ||
font-size: 13px; | ||
font-weight: 700; | ||
color: #777; | ||
width: 31.97%; | ||
} | ||
|
||
input[type='text'] { | ||
width: 51.4%; | ||
height: 27px; | ||
} | ||
|
||
.label { | ||
min-width: 167px; | ||
width: 16%; | ||
} | ||
|
||
.todo-text { | ||
vertical-align: middle; | ||
color: #555; | ||
font-size: 11px; | ||
display: inline-block; | ||
width: 31%; | ||
line-height: 1.1; | ||
padding-left: 11px; | ||
|
||
.example { | ||
color: #666; | ||
font-family: monospace; | ||
font-size: 11px; | ||
} | ||
} | ||
|
||
.inputs { | ||
|
||
div { | ||
height: 42px; | ||
} | ||
|
||
input { | ||
-webkit-border-radius: 1px; | ||
-moz-border-radius: 1px; | ||
border-radius: 1px; | ||
border: 1px solid #d9d9d9; | ||
border-top: 1px solid #c0c0c0; | ||
font-size: 13px; | ||
height: 29px; | ||
padding: 1px 8px; | ||
min-width: 167px; | ||
} | ||
|
||
input:focus { | ||
-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.3); | ||
-moz-box-shadow: inset 0 1px 2px rgba(0,0,0,.3); | ||
box-shadow: inset 0 1px 2px rgba(0,0,0,.3); | ||
border: 1px solid #4d90fe; | ||
outline: none; | ||
} | ||
|
||
} | ||
|
||
.submit-btn { | ||
margin-left: 274px; | ||
user-select: none; | ||
line-height: 100%; | ||
height: 30px; | ||
min-width: 120px !important; | ||
font-size: 11px !important; | ||
font-weight: bold; | ||
text-align: center; | ||
white-space: nowrap; | ||
border-radius: 2px; | ||
-webkit-box-shadow: none; | ||
-moz-box-shadow: none; | ||
box-shadow: none; | ||
background-color: #4d90fe; | ||
background-image: -webkit-linear-gradient(top,#4d90fe,#4787ed); | ||
background-image: -moz-linear-gradient(top,#4d90fe,#4787ed); | ||
background-image: -ms-linear-gradient(top,#4d90fe,#4787ed); | ||
background-image: -o-linear-gradient(top,#4d90fe,#4787ed); | ||
background-image: linear-gradient(top,#4d90fe,#4787ed); | ||
border: 1px solid #3079ed; | ||
color: #fff; | ||
} | ||
|
||
} | ||
|
||
footer { | ||
background-color: #F2F2F2; | ||
color: #70758D; | ||
|
||
.country { | ||
border-top: #DADCE0 1px solid; | ||
border-bottom: #DADCE0 1px solid; | ||
padding: 9px 45px 9px; | ||
font-size: 15px; | ||
} | ||
|
||
|
||
|
||
.nav-link:hover { | ||
color: #4d5156; | ||
} | ||
|
||
ul { | ||
gap: 1.7rem; | ||
margin: 0 0 0 45px; | ||
padding-left: 0; | ||
} | ||
|
||
li { | ||
list-style: none; | ||
padding: 9.4px 0 9.4px 0; | ||
} | ||
|
||
a { | ||
white-space: nowrap; | ||
|
||
} | ||
} | ||
|
||
@media (max-width: 1124px) { | ||
.inputs { | ||
align-items: center !important; | ||
gap: 2rem; | ||
|
||
input { | ||
width: 100% !important; | ||
margin-top: 12px; | ||
margin-bottom: 12px; | ||
} | ||
} | ||
|
||
.todo-text, .subtitle-2 { | ||
display: none !important; | ||
} | ||
|
||
.submit-btn { | ||
margin-left: 235px !important; | ||
} | ||
|
||
} | ||
|
||
@media (max-width: 459px) { | ||
.inputs { | ||
gap: 2rem; | ||
|
||
input { | ||
margin-top: 12px; | ||
margin-bottom: 12px; | ||
} | ||
} | ||
|
||
.submit-btn { | ||
margin-left: 0 !important; | ||
} | ||
} |
Oops, something went wrong.