Initial design study materials
This commit is contained in:
@@ -0,0 +1,91 @@
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: Arial, sans-serif;
|
||||
background: #f5f5f7;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.horizontal {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
#navbar {
|
||||
width: 80%;
|
||||
height: 40px;
|
||||
margin: 12px auto 25px;
|
||||
padding: 0 12px;
|
||||
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
#navbar > div {
|
||||
color: #555;
|
||||
font-size: 11px;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#navbar > div:hover {
|
||||
color: black;
|
||||
}
|
||||
|
||||
.logo {
|
||||
color: black;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
#navbar span {
|
||||
color: #555;
|
||||
font-size: 17px;
|
||||
}
|
||||
|
||||
.menu {
|
||||
width: 55%;
|
||||
margin-left: 11%;
|
||||
|
||||
align-items: flex-start;
|
||||
gap: 30px;
|
||||
}
|
||||
|
||||
.column {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
||||
background-color: #f5f5f7;
|
||||
}
|
||||
|
||||
.column small {
|
||||
padding: 6px;
|
||||
margin-bottom: 4px;
|
||||
|
||||
color: #777;
|
||||
font-size: 10px;
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
.column > div {
|
||||
padding: 3px 6px;
|
||||
|
||||
color: #444;
|
||||
font-size: 11px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.column > div:hover {
|
||||
color: black;
|
||||
}
|
||||
|
||||
.first-column {
|
||||
width: 160px;
|
||||
}
|
||||
|
||||
.first-column > div {
|
||||
font-size: 18px;
|
||||
}
|
||||
Reference in New Issue
Block a user