-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
117 lines (95 loc) · 1.72 KB
/
style.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
style.css
body{
margin: auto;
padding: 0;
width: 100%;
height: 100%;
background-color: #008080;
}
.container{
background: #FFF;
width: 117vw;
height: 117vh;
display: grid;
grid-template-columns: 100px 100px 100px 100px;
grid-template-rows: 100px 100px 100px 100px 100px;
padding:0;
}
header{
grid-column-start:1;
grid-column-end:7;
grid-row-start: 1;
grid-row-end: 2;
background: #FFF;
height: 300px;
}
aside{
padding:50px;
grid-column-start: 6;
grid-column-end: 7;
grid-row-start: 2;
grid-row-end: 7;
background: #FFF;
border-top: 2px solid #40e0d0;
}
main{
border-top: 2px solid #40e0d0;
padding-top:50px;
grid-column-start: 1;
grid-column-end: 6;
grid-row-start: 2;
grid-row-end: 7;
background: #FFF;
}
.navbar {
overflow: hidden;
background-color: #40e0d0;
top: 0;
width: 100%;
}
.navbar a {
float: left;
color: #FFF;
text-align: center;
padding-right: 30px;
}
.post{
background: #fff;
padding: 50px;
width: 780px;
}
.image{
display: block;
padding-top: 0px;
margin-left: auto;
margin-right: auto;
}
.contact{
height: 10%;
width: 60%;
padding: 0px;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #40e0d0;
}
li {
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
input[type=text] {
width: 50%;
height: 30px;
padding: 5px 10px;
margin: 8px 0px;
box-sizing: border-box;
}