You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
867 B
59 lines
867 B
@import url(./_contact.css);
|
|
|
|
@font-face {
|
|
font-family: "iranSans";
|
|
src: url('../fonts/IRANSansXFaNum-Medium.ttf');
|
|
font-weight: normal;
|
|
font-size: normal;
|
|
}
|
|
|
|
html {
|
|
direction: rtl;
|
|
}
|
|
|
|
*,
|
|
body {
|
|
font-family: iranSans;
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
direction: rtl;
|
|
}
|
|
|
|
.nav {
|
|
display: block;
|
|
background-color: #efefef;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.nav a {
|
|
float: right;
|
|
color: #333;
|
|
text-align: center;
|
|
padding: 14px 16px;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.active {
|
|
border-bottom: 2px solid orange;
|
|
}
|
|
|
|
.nav a:hover {
|
|
border-bottom: 2px solid orange;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.icon {
|
|
display: none;
|
|
}
|
|
|
|
@media screen and (max-width: 1000px) {
|
|
.nav a:not(:first-child) {
|
|
display: none;
|
|
}
|
|
|
|
.nav a.icon {
|
|
display: block;
|
|
float: left !important;
|
|
}
|
|
} |