Skip to content

Commit 74447ef

Browse files
committed
New css has been added for Navbar and html block, heading css added, Lato font included.
1 parent 183a0f6 commit 74447ef

File tree

1 file changed

+58
-2
lines changed

1 file changed

+58
-2
lines changed

css/uploader.css

Lines changed: 58 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,63 @@
1-
/* Page Styles */
2-
body { padding-top: 70px; }
1+
/* Import Fonts */
2+
@import url('https://fonts.googleapis.com/css?family=Lato');
33

4+
/* Page Styles */
5+
body {
6+
padding-top: 70px;
7+
position: relative;
8+
font-family: 'Lato', sans-serif;
9+
}
10+
.title{
11+
font-size: 26px;
12+
font-family: 'Lato', sans-serif;
13+
}
14+
.block-heading{
15+
position: relative;
16+
}
17+
.block-heading h3{
18+
text-transform: uppercase;
19+
font-size: 16px;
20+
color: #333;
21+
letter-spacing: 1.5px;
22+
font-family: 'Lato', sans-serif;
23+
}
24+
.block-heading::after{
25+
content: '';
26+
height: 1px;
27+
position: absolute;
28+
background-color: #9c27b0;
29+
left: 0;
30+
width: 30px;
31+
}
32+
.navbar-default{
33+
background-color: #9c27b0;
34+
}
35+
.navbar-default .navbar-nav>li>a{
36+
color: #fff;
37+
}
38+
.btn-primary.active.focus, .btn-primary.active:focus, .btn-primary.active:hover, .btn-primary:active.focus, .btn-primary:active:focus, .btn-primary:active:hover, .open>.dropdown-toggle.btn-primary.focus, .open>.dropdown-toggle.btn-primary:focus, .open>.dropdown-toggle.btn-primary:hover {
39+
color: #fff;
40+
background-color: #9c27b0;
41+
border-color: #9c27b0;
42+
}
43+
.navbar-default .navbar-brand{
44+
color: #fff;
45+
}
46+
#demo1-form{
47+
margin-top: 40px;
48+
}
49+
.btn{
50+
padding: 8px 34px;
51+
background-color: #9c27b0;
52+
color: #fff;
53+
font-size: 16px;
54+
border-radius: 0;
55+
}
56+
.btn:hover{
57+
color: #fff !important;
58+
}
459
/* end Page Style */
60+
561
#remove-profile-btn{
662
display: none;
763
margin-top: 12px;

0 commit comments

Comments
 (0)