-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.css
70 lines (56 loc) · 808 Bytes
/
stylesheet.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
/* Common CSS Sections */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
-outline: 0;
font-family: 'Courier New', Courier, monospace;
}
html, body
{font-size: 14px;
font-weight: 400;
background: #000000;
color: #fff
}
.container {
width: 1100px;
margin: 0px auto;
display: table;
}
.width-33
{
width: 33%;
float: left;
}
.width-66
{
width: 66%;
float: left;
}
/* Menu Section */
.main-panel
{
width: 100%;
float: left;
padding-top: 20px;
padding-bottom: 50px;
height: 100vh;
}
.logo {
font-size: 40px;
font-weight: 600;
}
.span-col {
color: #ffbf35
}
nav
{
float: right;
}
nav a {
text-decoration: none;
font-size: 16px;
font-weight: 500;
margin-left: 20px;
color: white;
}