-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebcut.css
57 lines (57 loc) · 1.06 KB
/
webcut.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
body{
margin:0
}
@font-face {
font-family: 'Material Icons';
font-style: normal;
font-weight: 400;
src: url(https://example.com/MaterialIcons-Regular.eot); /* For IE6-8 */
src: local('Material Icons'),local('MaterialIcons-Regular'),
url(https://example.com/MaterialIcons-Regular.woff2) format('woff2'),
url(https://example.com/MaterialIcons-Regular.woff) format('woff'),
url(https://example.com/MaterialIcons-Regular.ttf) format('truetype');
}
.main{
position:relative;
margin-top:60px;
margin-left:auto;
margin-right:auto;
width:90%;
height:800px;
background:#f5f5f5;
}
.menu{
position:relative;
top:10px;left:10px;
background:url();
}
.header{
position:fixed;
top:0;
width:100%;
height:50px;
background:#000;
z-index:999;
}
.footer{
position:relative;
margin-top:20px;
width:100%;
height:50px;
background:lightgray;
}
.logo{
position:relative;
margin-left:auto;
margin-right:auto;
width:200px;
text-align:center;
line-height:50px;
height:50px;
color:#fff;
font-family:arial;
font-size:20px;
}
.orange{
background:orange!important;
}