Dagfinn1962 commited on
Commit
82d7c88
1 Parent(s): ec290eb

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +76 -0
style.css CHANGED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body {
2
+ margin: 0;
3
+ padding: 0;
4
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
5
+ color: #444;
6
+ }
7
+ /*
8
+ * Formatting the header area
9
+ */
10
+ header {
11
+ background-color: #DFB887;
12
+ height: 35px;
13
+ width: 100%;
14
+ opacity: .9;
15
+ margin-bottom: 10px;
16
+ }
17
+ header h1.logo {
18
+ margin: 0;
19
+ font-size: 1.7em;
20
+ color: #fff;
21
+ text-transform: uppercase;
22
+ float: left;
23
+ }
24
+ header h1.logo:hover {
25
+ color: #fff;
26
+ text-decoration: none;
27
+ }
28
+ /*
29
+ * Centering the body content
30
+ */
31
+ .container {
32
+ width: 1200px;
33
+ margin: 0 auto;
34
+ }
35
+ div.home {
36
+ padding: 10px 0 30px 0;
37
+ background-color: #E6E6FA;
38
+ -webkit-border-radius: 6px;
39
+ -moz-border-radius: 6px;
40
+ border-radius: 6px;
41
+ }
42
+ div.about {
43
+ padding: 10px 0 30px 0;
44
+ background-color: #E6E6FA;
45
+ -webkit-border-radius: 6px;
46
+ -moz-border-radius: 6px;
47
+ border-radius: 6px;
48
+ }
49
+ h2 {
50
+ font-size: 3em;
51
+ margin-top: 40px;
52
+ text-align: center;
53
+ letter-spacing: -2px;
54
+ }
55
+ h3 {
56
+ font-size: 1.7em;
57
+ font-weight: 100;
58
+ margin-top: 30px;
59
+ text-align: center;
60
+ letter-spacing: -1px;
61
+ color: #999;
62
+ }
63
+ .menu {
64
+ float: right;
65
+ margin-top: 8px;
66
+ }
67
+ .menu li {
68
+ display: inline;
69
+ }
70
+ .menu li + li {
71
+ margin-left: 35px;
72
+ }
73
+ .menu li a {
74
+ color: #444;
75
+ text-decoration: none;
76
+ }