-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylest.css
More file actions
74 lines (57 loc) · 926 Bytes
/
stylest.css
File metadata and controls
74 lines (57 loc) · 926 Bytes
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
@charset "UTF-8";
/**
*
* @authors Your Name (you@example.org)
* @date 2018-05-27 11:41:08
* @version $Id$
*/
html {
width:100%;
height:100%;
}
body {
font-family: 'Montserrat';
width: 100%;
height:100%;
}
hr {
max-width: 65px;
border-width: 3px;
border-color: #f05f44;
}
.faded{
color:rgba(255, 255, 255, 0.8);
padding-top: 200px;
}
header.startup {
background-position: center;
background-image: url("header.jpg");
background-size: cover;
height: 100%;
}
header.startup hr {
margin-top: 150px;
margin-bottom: 10px;
}
header.startup h1{
font-size: 2rem;
}
.btn {
font-weight: 700;
text-transform: uppercase;
border-radius: 300px;
font-family: 'Montserrat';
}
.btn-xl {
padding: 1rem 2rem;
}
.btn-primary {
background-color: #f05f44;
border-color: #f05f44;
}
.btn-primary:hover {
background-color: #ee4b08;
border-color: #ee4b08;
cursor: pointer;
transform: scale(1.1);
}