Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
plumdumpling committed Aug 7, 2023
1 parent 6c56c81 commit fe0b17a
Show file tree
Hide file tree
Showing 4 changed files with 1,509 additions and 78 deletions.
96 changes: 47 additions & 49 deletions app.css
Original file line number Diff line number Diff line change
@@ -1,30 +1,7 @@
/**
* Resets
*/
*, :before, :after {
margin: 0;
padding: 0;
position: relative;
box-sizing: border-box;
}

input, select, button, textarea {
-webkit-appearance: none;
-moz-appearance: none;
-moz-appearance: none;
font: inherit;
color: inherit;
}

/**
* Base
*/
html {
font: 112.5%/1.2 "Roboto", Arial, sans-serif;
color: #3d464d;
background-color: #fff;
font-weight: 300;
-webkit-font-smoothing: antialiased;
width: 100%;
height: 100%;
overflow: hidden-x;
Expand All @@ -38,62 +15,83 @@ body {
display: flex;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-ms-flex-pack: center;
justify-content: center;
width: 100%;
height: 100%;
}

.container {
-webkit-box-flex: 0;
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
max-width: 612px;
max-width: 34rem;
}

a {
color: #3d464d;
-webkit-transition: color 0.2s;
transition: color 0.2s;
}

a:hover, a:focus {
color: #267dc0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
max-width: 576px;
max-width: 36rem;
}

h1 {
font-size: 72px;
font-size: 64px;
font-size: 4rem;
font-weight: 100;
margin-bottom: .5em;
color: #267dc0;
margin-bottom: 0.5em;
color: var(--ubilabs-green);
}

.subheader {
font-weight: 300;
margin-bottom: 1.5em;
font-weight: 400;
}

input[type='text'] {
/** Reset Ubilabs input styles */
background-color: initial;
border-radius: initial;
color: initial;
font-family: initial;
font-size: initial;
height: initial;
line-height: initial;
max-width: initial;
outline: initial;
font: inherit;
/** Set Geosuggest styles */
width: 100%;
border: 2px solid transparent;
box-shadow: 0 0 1px #3d464d;
padding: 0.5em 1em;
-webkit-transition:
border 0.2s,
box-shadow 0.2s;
transition:
border 0.2s,
box-shadow 0.2s;
}
input[type='text']:focus-visible {
/** Set Geosuggest styles */
border-color: #267dc0;
box-shadow: 0 0 0 transparent;
}

.hint {
color: #ccc;
color: var(--ubilabs-gray-dark-1);
margin: 2em 0;
}

.footer {
font-weight: 300;
padding-top: 2em;
margin-top: 2em;
border-top: 1px solid #ccc;
border-top: 1px solid var(--ubilabs-gray);
}

.ubilabs {
vertical-align: middle;
height: 1em;
margin: 0.05em 0.25em;
vertical-align: text-top;
}
/**
* The geosuggest module
Expand Down
Loading

0 comments on commit fe0b17a

Please sign in to comment.