-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle2.css
143 lines (121 loc) · 3.2 KB
/
style2.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
/*add farsi fonts*/
/*fix font in net*/
/*@font-face {
font-family: FontName;
src: url('Shabnam-Bold.eot');
src: url('Shabnam-Bold.eot?#iefix') format('FontName-opentype'),
url('FontName.woff') format('woff'),
url('FontName.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}*/
/*@font-face {
font-family: 'Lalezar';
src: url("https://fdn.fontcdn.ir/Fonts/Lalezar/e6bfcacc4a01f1e1a6c149241fa51d3f9ad5354aaf941ff2a03b917754fa82c1.eot");
src: url("https://fdn.fontcdn.ir/Fonts/Lalezar/e6bfcacc4a01f1e1a6c149241fa51d3f9ad5354aaf941ff2a03b917754fa82c1.eot?#iefix") format("embedded-opentype"),
url("https://fdn.fontcdn.ir/Fonts/Lalezar/148c72044161f7fdd874a7743f5402f15b04bc2b9a609d2734deb22057bef2d5.woff2") format("woff2"),
url("https://fdn.fontcdn.ir/Fonts/Lalezar/a35ccfec33d9dc09ca7507cbdccba5fc76310f56c1cc7c0a17f9fc37ef4887d5.woff") format("woff"),
url("https://fdn.fontcdn.ir/Fonts/Lalezar/7b80807bc831f141de0f7dcf6816412bf0c548968d548c5156ca388733390ea9.ttf") format("truetype"),
url("https://fdn.fontcdn.ir/Fonts/Lalezar/62e76c3766b9364593c8e4552aa039f3a55e551211447560d7186eb04416542a.otf") format("opentype");
font-weight: 400;
font-style: normal;
}
@import url('https://v1.fontapi.ir/css/Lalezar');
*/
@font-face {
font-family: Shabnam-Bold;
src: url('Shabnam-Bold.eot');
src: url('./font/Shabnam-Bold.eot?#iefix') format('Shabnam-Bold-opentype'),
url('./font/Shabnam-Bold.woff') format('woff'),
url('Shabnam-Bold.ttf') format('truetype'),
url('Shabnam-Bold.woff2') format('woff2');
font-weight: normal;
font-style: bold;
}
/*creating background */
body {
font-family:Shabnam-Bold;
background: url(https://freenaturestock.com/wp-content/uploads/freenaturestock-1758-1024x1536.jpg) no-repeat center center ;
/*background filter blure i get tag from https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter*/
backdrop-filter: blur(2.5px);
/*background-attachment:fixed;*/
background-size:cover;
}
/*logo style*/
.logo {
height:30px;
}
.navbar-inverse {
opacity:80%;
}
.nav li{
color: #fff;
font-size: 17px;
margin-right: 20px;
padding: 7.6px 0;
text-align:center;
}
.nav li:hover{
border-bottom:1px solid #fff;
}
/*logo hover light*/
.navbar-brand:hover{
opacity:100%;
/*shadow png object*/
-webkit-filter: drop-shadow(1px 1px 3px #FFF);
filter: drop-shadow(1px 1px 3px #FFF);
cursor:pointer;
}
.jumbotron {
background-color:transparent;
color: #fff;
direction: rtl;
text-align:center;
margin:0;
padding:10px;
}
.bodyimage{
height:160px;
}
.col-md-4 {
text-align:center;
color:#fff;
font-size:22px;
}
#image1 {
margin-left:27px;
}
.container {
max-width:1100px;
}
.contact{
text-align:center;
margin-top:30px;
}
.btn {
background-color: rgba(38,32,32,0.89);
border:none;
border-radius:10px;
color:#fff;
padding:15px 50px;
margin-bottom:100px;
font-size:16px;
}
.btn:hover {
background-color: rgba(38,32,32,0.01);
color:rgb(38,32,32);
border:solid 1px #fff;
}
/*style footer*/
.footer{
background-color:rgba(0,0,0,0.68);
color:grey;
padding:50px;
font-size:16px;
}
/*use media tag for decrease image size for smal devises*/
@media (max-width: 768px) {
.bodyimage {
height:120px;
}
}