-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
92 lines (78 loc) · 1.34 KB
/
styles.css
File metadata and controls
92 lines (78 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
html, body {
margin: 0;
padding: 0;
font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
body {
background: url('bg.jpg') no-repeat center center fixed;
background-size: cover;
padding: 20px 0;
}
.header .logo {
font-size: 28px;
letter-spacing: 4px;
margin: 0;
margin-left: 10px;
text-transform: uppercase;
font-weight: normal;
}
.dropdown,
.logo {
display: inline-block;
vertical-align: text-top;
}
.dropdown {
position: relative;
}
.dropdown-menu {
border-radius:0px;
box-shadow:none;
border:none;
min-width: 200px;
top: 28px;
background-color: #000;
}
.dropdown-menu li {
margin-left: 0;
float:none;
}
.dropdown-menu li a {
color:#fff;
padding: 5px 0;
text-align: center;
}
.dropdown-menu li a:hover {
background-color:#ffff00;
color:#000;
}
.main {
position: relative;
top: 80px;
}
.main h1 {
background-color:rgba(255,255,0,0.5);
display:inline;
color: #000;
font-size:170px;
line-height:150px;
text-transform: lowercase;
}
.main h2 {
font-size: 60px;
margin: 40px 0;
}
.main .btn {
border-radius: 0px;
font-size: 18px;
color: 3333;
}
.main .btn-default {
background-color: rgba(255,255,255,0.5);
padding: 16px 26px;
}
@media (max-width: 800px) {
.main h1 {
font-size: 60px;
line-height: 50px;
}
}