-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
123 lines (106 loc) · 2.04 KB
/
style.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
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
body,html {
padding: 0;
margin: 0;
font-family: 'Roboto', sans-serif;
}
.main-title {
font-weight: 300;
font-size: 3.9em;
color: darkorange;
margin: 0;
text-align: center;
}
.sub-title {
line-height: 1.3em;
font-size: 1.2em;
font-weight: 300;
color: #594b4f;
margin: 0;
text-align: center;
padding-top: 5px;
padding-bottom: 5px;
}
p {
font-size: 1em;
line-height: 1.3em;
font-weight: 300;
color: #9e9d9d;
}
.top-bar {
background-color: #594b4f;
padding-top: 5px;
padding-bottom: 5px;
box-sizing: border-box;
height: 43px;
margin: auto;
line-height: 32px;
}
.main {
margin: 0;
background: #F5FAFF; /* fallback for old browsers */
background: -webkit-linear-gradient(to bottom, #F5FAFF, #FFEDDC); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to bottom, #F5FAFF, #FFEDDC); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.call-to-action {
background-image: url("imgs/background-hero.svg");
background-position: 50% 0px;
background-position-x: 50%;
background-position-y: bottom;
background-size: auto auto, auto 100%;
background-repeat: no-repeat;
padding-top: 25px;
padding-bottom: 25px;
}
.wrapper-nav{
width: 860px;
margin: auto;
line-height: 32px;
}
.navigation {
margin: auto;
padding-left: 0;
padding-right: 0;
line-height: 32px;
list-style-type: none;
text-align: left;
color: #ededed;
font-weight: 300;
font-size: 0.9em;
}
li {
display: inline;
padding-right: 20px;
}
.wrapper {
width: 860px;
margin: auto;
}
.main-text {
padding-top: 25px;
}
a {
text-decoration: none;
transition-delay: 0s;
transition-duration: 0.3s;
transition-property: color;
transition-timing-function: ease;
}
a.link-nav {
text-decoration: none;
color: #f7f0f1;
}
a.link-nav:hover {
text-decoration: none;
color: #f4aa67 ;
}
a.link-text:hover {
text-decoration: none;
color: darkorange;
}
a.link-text {
text-decoration: none;
color: #222222;
}
.black-text {
color: #5b5b5b;
}