-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
73 lines (63 loc) · 1.78 KB
/
styles.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
71
72
73
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300italic,300|Julius+Sans+One);
html {
margin: 0px;
padding: 0px;
}
body {
background: url("background.jpg");
margin: 0px;
padding: 0px;
}
#decoration {
background: linear-gradient(#2287cd 0%, #2171b5 100%);
display: block;
height: 60px;
position: absolute;
top: 20px;
width: 100%;
z-index: -1;
}
#wrapper {
/*border: 1px dashed #ccc;*/
display: block;
margin: 20px auto 40px auto;
min-height: 500px;
width: 800px;
font-family: 'Open Sans';
}
#title h1 {
margin: 40px 0 20px 0;
font-weight: bold;
}
#content {
text-align: justify;
}
#navigation {
/*border-collapse: collapse;*/
border-left: 1px solid #2287cd;
border-right: 1px solid #2262a7;
display: table;
margin: 0 auto;
table-layout: fixed;
width: 100%;
}
#navigation > a {
/*background-color: #5890ff;*/
/*border: 1px solid #22a2e9;*/
border-right: 1px solid #2287cd;
border-left: 1px solid #2262a7;
box-sizing: border-box;
color: #fff;
display: table-cell;
font-variant: small-caps;
height: 60px;
text-align: center;
text-decoration: none;
vertical-align: middle;
}
#navigation > a:hover {
background: linear-gradient(#23a1e9 0%, #2287cd 100%);
}
a {
color: #2D4FC3;
}