-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
111 lines (95 loc) · 1.63 KB
/
Copy pathmain.css
File metadata and controls
111 lines (95 loc) · 1.63 KB
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
body{
font-family: "Helvetica Neue", sans-serif;
}
h1{
font-size: 4em;
-webkit-column-span: all;
-moz-column-span: all;
column-span: all;
}
h2{
font-size: 3em;
-webkit-column-span: all;
-moz-column-span: all;
column-span: all;
}
h3{
font-size: 2em;
-webkit-column-span: all;
-moz-column-span: all;
column-span: all;
}
h4{
font-size: 1.5em;
-webkit-column-span: all;
-moz-column-span: all;
column-span: all;
}
.container{
width: 100%;
height: 100%;
text-align: center;
padding-top: 2em;
overflow-y: hidden;
}
.container:first-of-type{
background-color:red;
}
.container:nth-of-type(2){
background-color:blue;
}
.container:nth-of-type(3){
background-color:yellow;
}
.container:last-of-type{
background-color:orange;
}
.threecol_container{
-webkit-column-count: 3;
-moz-column-count: 3;
column-count: 3;
-webkit-column-width: 6em;
-moz-column-width: 6em;
column-width: 6em;
-webkit-column-rule: 1px dotted #aaa;
-moz-column-rule: 1px dotted #aaa;
column-rule: 1px dotted #aaa;
padding: 5em;
}
.column{
display: inline-block;
}
.column ul{
margin-top: 1em;
}
.column ul li{
padding: 1em;
}
#first{
width: auto;
}
#first div{
text-align: left;
}
form{
padding: 3em;
display: block;
}
.contact input{
width: 75%;
padding: 1em;
margin-bottom: 1em;
}
.contact input[type=text]{
height: 400px;
}
.contact input[type=submit]{
}
footer{
background-color:black;
color:white;
padding: 2em;
}
footer h4{
padding-bottom: 1em;
}