-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
97 lines (84 loc) · 2.18 KB
/
styles.css
File metadata and controls
97 lines (84 loc) · 2.18 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
93
94
95
96
97
html,
body,
header,
#intro {
height: 100%;
}
#intro {
background: url("background.png")no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.brand-heading {
font-family: Inconsolata;
font-size: 76px;
font-weight: normal;
font-style: normal;
font-stretch: normal;
line-height: normal;
letter-spacing: normal;
color: #ffffff;
}
.sub-heading {
font-family: Montserrat;
font-size: 36px;
font-weight: 300;
color: #ffffff;
}
p {
color: white;
font-family: Inconsolata;
font-size: 16px;
}
.jumbotron {
background-color: transparent;
margin-top: 250px;
}
.line {
width: 100%;
height: 1px;
border: solid 3px rgba(255, 255, 255, 0.18);
}
input.transparent-input{
background-color:rgba(0,0,0,0) !important;
border:none !important;
}
.form-control {
background-color: transparent;
border-bottom: solid 3px rgba(255, 255, 255, 0.18);
border-top: none;
border-left: none;
border-right: none;
color: white;
font
}
.form-control:focus {
background-color: transparent;
border-bottom: solid 3px rgba(255, 255, 255, 0.18);
border-top: none;
border-left: none;
border-right: none;
color: white;
box-shadow: none;
}
.form-control:click {
background-color: transparent;
border-bottom: solid 3px rgba(255, 255, 255, 0.18);
border-top: none;
border-left: none;
border-right: none;
color: white;
}
.btn {
border-radius: 15px;
background-color: #000000;
border: none;
font-family: Inconsolata;
}
.form-control::-webkit-input-placeholder { color: white; font-family: Inconsolata; } /* WebKit, Blink, Edge */
.form-control:-moz-placeholder { color: white; font-family: Inconsolata; } /* Mozilla Firefox 4 to 18 */
.form-control::-moz-placeholder { color: white; font-family: Inconsolata; } /* Mozilla Firefox 19+ */
.form-control:-ms-input-placeholder { color: white; font-family: Inconsolata; } /* Internet Explorer 10-11 */
.form-control::-ms-input-placeholder { color: white; font-family: Inconsolata; } /* Microsoft Edge */