Skip to content
Snippets Groups Projects

Resolve "As a user I want to find out what Tramshed is so that I can access their working spaces"

20 files
+ 568
122
Compare changes
  • Side-by-side
  • Inline
Files
20
+ 156
0
 
/* #iD and .Class
 
 
font, color, text
 
padding, background, border, margin
 
width, height,
 
position, top/right/bottom/left
 
overflow, float, display
 
 
 
.my-class {
 
width: calc(100% - 20px);
 
height: calc(50% + 10px);
 
} */
 
 
* {
 
font-family: Helvetica, Verdana, Arial, sans-serif;
 
}
 
 
body {
 
margin: 0;
 
padding: 0;
 
}
 
 
ul, li {
 
list-style-type: none;
 
margin: 0;
 
padding: 0;
 
}
 
 
a {
 
text-decoration: none;
 
}
 
 
.Left {
 
margin-right: auto;
 
}
 
 
.Center {
 
margin-left: auto;
 
margin-right: auto;
 
}
 
 
.Right {
 
margin-left: auto;
 
}
 
 
/* [#1] Page header styling. Uses [#2].
 
 
header #pageHeader
 
div #headerDiv
 
nav #headerNav .navBar
 
ul .Right, ul .Left
 
li a
 
 
*/
 
 
#headerDiv {
 
text-align: center;
 
background-color: white;
 
padding: 20px 0px;
 
display: flex;
 
align-items: center;
 
justify-content: flex-start;
 
}
 
 
#headerDiv a {
 
font-size: 30px;
 
font-weight: bold;
 
color: black;
 
}
 
 
#headerText {
 
width: 100%;
 
margin-left: -220px;
 
}
 
 
#headerImg {
 
width: 180px;
 
height: 65px;
 
margin-top: -10px;
 
margin-right: 20px;
 
margin-bottom: -17.5px;
 
margin-left: 20px;
 
}
 
 
#headerNav {
 
width: 100%;
 
position: absolute;
 
}
 
 
#headerNav a {
 
font-size: 20px;
 
padding: 7.5px 10px;
 
}
 
 
#headerNav img {
 
width: 55px;
 
height: 20px;
 
}
 
 
/* [#2] Page navigation styling. Used in [#1] and [#4]. */
 
 
.navBar {
 
background-color: #282A35;
 
display: flex;
 
justify-content: center;
 
align-items: center;
 
}
 
 
.navBar ul, .navBar li {
 
display: flex;
 
align-items: center;
 
}
 
 
.navBar a {
 
color: white;
 
}
 
 
.navBar a:hover {
 
background-color: #0B0C0F;
 
}
 
 
/* [#3] Page main styling.
 
 
main #pageMain
 
form #recordForm
 
label
 
input .formTextInput
 
button #addButton
 
 
*/
 
 
#pageMain {}
 
 
#recordForm {
 
margin-left: 5px;
 
}
 
 
#recordForm .formTextInput {
 
margin-top: 5px;
 
width: 50%;
 
}
 
 
/* [#4] Page footer styling. Uses [#2].
 
 
footer #pageFooter
 
nav #footerNav .navBar
 
ul .Center
 
li a
 
 
*/
 
 
#footerNav a {
 
font-size: 15px;
 
padding: 5px 10px;
 
}
Loading