-
Notifications
You must be signed in to change notification settings - Fork 0
/
mockup.css
98 lines (81 loc) · 1.04 KB
/
mockup.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
html {
background-color: #d2d2d2;
}
body{
padding-left: 150px;
padding-right: 150px;
}
nav {
height: 50px;
background-color: #ff80ff;
margin-bottom: 10px;
display: flex;
}
article{
height: 100%;
}
nav ul {
padding: 0;
list-style-type: none;
flex: 2;
display: flex;
}
nav li {
display: inline;
text-align: center;
flex: 1;
}
nav a {
display: inline-block;
font-size: 2rem;
text-transform: uppercase;
text-decoration: none;
color: black;
}
nav form {
align-items: center;
height: 100%;
padding: 0 2em;
flex: 1;
display: flex;
}
input {
font-size: 1.6rem;
height: 32px;
}
input[type="search"] {
flex: 3;
}
input[type="submit"] {
margin-left: 1rem;
background: #333;
border: 0;
color: white;
flex: 1;
}
main {
display: flex;
}
article {
flex: 4;
}
aside {
flex: 1;
margin-left: 10px;
background-color: #ff80ff;
}
aside li {
padding-bottom: 10px;
}
footer {
margin-top: 10px;
}
article, footer{
background-color: #ffffff;
}
header{
text-align: center;
}
h1{
color: #ffffff
}