-
Notifications
You must be signed in to change notification settings - Fork 0
/
styling.css
95 lines (77 loc) · 1.54 KB
/
styling.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
body{
font-family: Arvo ,serif;
background: url(https://images.pexels.com/photos/326424/pexels-photo-326424.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940) no-repeat center center fixed;
background-size: cover;
}
.h1{
text-shadow: 1.5px .5px grey;
}
.logo{
height: 30px;
}
.navbar-inverse{
background: rgba(0,0,0,0.5);
}
.nav li{
color: #fff;
font-size: 17px;
margin-right: 35px;
padding: 10px 0;
}
.nav li:hover{
border-bottom: 1px solid #f29c02;
padding-bottom: 9px;
cursor: pointer;
}
.jumbotron{
background-color: transparent;
color: white;
text-align: center;
margin: 0;
padding: 10px;
letter-spacing: 2.5px;
}
.container{
max-width: 1000px;
}
.bodyimage{
height: 100px;
}
.col-md-4{
text-align: center;
color: #fff;
text-shadow: 1.5px .5px grey;
}
.icons p{
font-size: 15px;
}
.contact{
text-align: center;
margin-top: 30px;
margin-bottom: 100px;
}
.btn{
background-color:rgba(242, 156, 2,0.5);
border: none;
border-radius: 10px;
color: #fff;
font-size: 18px;
padding: 10px 70px;
letter-spacing: 1.3px;
}
.btn:hover{
background-color: rgba(0, 0, 0, 0.5);
color: #fff;
border: none;
}
.footer{
background-color: rgba(0, 0, 0, 0.5);
color: white;
font-size: 15px;
padding: 10px 0;
}
@media (max-width: 768px){
.bodyimage{
height: 70px;
}
}