-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
112 lines (111 loc) · 2.06 KB
/
Copy pathstyle.css
File metadata and controls
112 lines (111 loc) · 2.06 KB
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
*{
margin: 0;
padding: 0;
font-family: 'Courier New', Courier, monospace;
box-sizing: border-box;
}
.container{
width: 100%;
height: auto;
background-color: #ffff;
}
.main{
max-width: 1200px;
height: auto;
margin: 0 auto;
}
nav{
width: 100%;
height: 100px;
}
nav ul {
float: right;
list-style-type: none;
}
nav ul li{
display: inline-block;
}
nav ul li a{
text-decoration: none;
color: #000000;
line-height: 100px;
padding: 35px 10px;
font-size: 17px;
letter-spacing: 0.6px;
}
nav ul li a:hover{
text-decoration: underline;
}
.logo{
float: left;
line-height: 100px;
}
.logo h1{
color: #000000;
}
.slider{
width: 100%;
height: 630px;
background-image: url('../image/Gallery\ 5.jpg');
background-position: center;
background-size: cover;
display: flex;
align-items: center;
}
.slider .title{
width: 40%;
height: auto;
position: absolute;
left: 30px;
}
.slider .title h1{
font-size: 55px;
line-height: 45px;
}
.slider .title h1 samp{
color: rgb(2, 38, 104);
}
.slider .title p{
font-size: 15px;
margin-top: 15px;
line-height: 1.5;
}
.slider .title .btn{
color: #ffff;
background-color: rgb(2, 38, 104);
text-decoration: none;
text-align: center;
border-radius: 3px;
padding: 10px 26px;
letter-spacing: 0.5px;
margin-right: 10px;
line-height: 26px;
display: inline-block;
font-size: 16px;
margin-top: 36px;
text-transform: uppercase;
transition: 0.5s all;
}
.slider .title .btn:hover{
background-color: rgb(2, 2, 37);
}
.main1{
width: 100%;
height: 200px;
}
.flex-container{
margin-top: 80px;
clear: both;
float: left;
}
.main1 .flex-container .flex-item{
width: 20%;
display: inline-block;
text-align: center;
margin-left: 46px;
}
.main1 .flex-container .flex-item h5{
font-size: 18px;
letter-spacing: 0.5;
margin: 20px 0px;
}