-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
126 lines (119 loc) · 2.26 KB
/
style.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
/* font start */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
/* font end */
/* common css start */
*{
}
body{
margin: 0;
font-family: "Playfair Display", serif;
font-size:16px ;
font-weight: 400 ;
color: #626262;
}
/* common css end */
/* header satrt */
header{
padding: 35px 0;
/* border: 1px solid greenyellow; */
}
.container{
overflow: hidden;
margin: 0 auto;
width: 90%;
/* border: 1px solid red; */
}
.logo{
margin-top: 9px;
float:left;
width: 15%;
/* border: 1px solid black; */
}
.logo a{}
.logo a img{
width: 100%;
}
.menu{
float:right;
width: 60%;
/* border: 1px solid black; */
}
.menu ul{
float: right;
}
.menu ul li{
list-style: none;
float: left;
}
.menu ul li a{
margin: 0px 50px;
color: #626262;
text-decoration: none;
text-transform: uppercase;
border-bottom:1px solid transparent;
transition: .33s
}
.menu ul li:last-child a{
margin-right:0%;
}
.menu ul li a:hover{
border-bottom: 1px solid #626262;
}
/* header end */
/* banner start */
.banner{}
.b_image{}
.b_image img{
width: 100%;
}
/* banner end */
/* nwes start */
.container2{
}
.news{
background-color:#f0f0f0;
padding: 70px;
}
.signup{
text-align: center;
}
.s_h1{
color: #333333;
margin-top: 0;
margin-bottom: 70px;
}
.title{
}
.s_form{
width: 400px;
/* border: 1px solid red; */
position: relative;
margin: 0 auto;
}
.s_form input{
font-family: "Playfair Display", serif;
font-size: 14px;
color: #626262;
width: 350px;
height: 45px;
border: none;
border-bottom: 1px solid #000;
background-color: transparent;
padding-right: 36px;
padding-left: 13px;
}
.s_form input:focus{
outline: 0;
}
.s_form button{
position: absolute;
background-color: transparent;
border: none;
cursor: pointer;
top: 18px;
right: 0;
}
.s_form button img{}
.signup h1{}
/* nwes end */