-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnew2.css
More file actions
99 lines (85 loc) · 1.34 KB
/
new2.css
File metadata and controls
99 lines (85 loc) · 1.34 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
body{
background-image: url("showcase.jpg");
height: 900px;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
color:#555;
font-family:Arial, Helvetica, sans-serif;
font-size:16px;
line-height:1.6em;
margin:0;
}
.container{
width:80%;
margin:auto;
overflow:hidden;
}
#main-header{
color:#ffcc66;
min-height:20px;
}
#navbar{
background-color:#2a2a3c;
color:#foffff;
}
#navbar ul{
padding:0;
list-style: none;
}
#navbar li{
font-size: 15px;
display:inline;
}
#navbar a{
color:#ffcc66;
text-decoration: none;
font-size:18px;
padding-right:15px;
}
#showcase{
background-position:center ;
min-height:100px;
margin-bottom:30px;
text-align: center;
}
#showcase h1{
color:#ffcc66;
font-size:50px;
line-height: 1.6em;
padding-top:30px;
}
#main{
background-color:#2a2a3c;
color:#ffcc66;
float:left;
width:50%;
padding:0 30px;
box-sizing: border-box;
}
#sidebar{
float:right;
width:30%;
background: #2a2a3c;
color:#ffcc66;
padding:10px;
box-sizing: border-box;
}
#main-footer{
background: #2a2a3c;
color:#ffcc66;
text-align: center;
padding:10px;
margin-top:650px;
}
@media(max-width:600px){
#main{
width:100%;
float:none;
}
#sidebar{
width:100%;
float:none;
}
}