-
Notifications
You must be signed in to change notification settings - Fork 56
/
startup.css
117 lines (87 loc) · 1.48 KB
/
startup.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
/* Startup Website */
html, body, .cover {
height: 100% ;
}
.cover {
background: url('img/couchfriends.jpg') top left no-repeat;
background-size: cover;
display: table;
width: 100%;
padding: 0 20%;
box-shadow: inset 0 0 100px #100;
}
.cover-text {
text-align: center;
color:white;
display: table-cell;
vertical-align: middle;
}
.cover-text h1 {
font-size: 60px;
color:burlywood;
margin: 0;
letter-spacing: -4px;
}
.nav navbar {
background-color: rgba(0, 0, 0, 0.5);
border: none;
}
.testimonial {
background: #100000 ;
}
blockquote {
border: none;
font-family: Georgia , Times, monospace;
font-style: italic;
font-size: 32px;
color: aliceblue ;
}
blockquote cite {
display:block;
font-family: Helvitica, sans-serif, Arial;
font-style: normal;
font-size: 20px;
text-transform: uppercase;
font-weight: bold;
text-align: right;
color:antiquewhite;
}
section {
padding: 100px;
}
h2{
text-align: center;
font-size: 28px;
font-weight: bold;
text-transform: uppercase;
margin: 0 0 60px;
}
h2 + p{
text-align: center;
margin-top: -50px;
}
#team {
background: url('img/fan.jpg') top left no-repeat;
background-size: cover;
color: white;
text-align: center;
}
footer{
background: #222;
color:beige;
text-align: center;
padding: 20px;
font-family: Times, sans-serif, serif;
}
footer a {
color:red;
}
/*------- Media Queries -------*/
@media only screen and (max-width : 568px)
{
.cover h1 {
fontsize: 40px;
}
section {
padding: 20px;
}