-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
132 lines (120 loc) · 2.44 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
127
128
129
130
131
132
/*styling for index.html*/
body {
background-image:linear-gradient(rgba(0, 0, 0, 0.1),rgba(0,0,0,0.1)),url('images/train5.jpg');
background-repeat: no-repeat;
background-position: center center;
margin: 0;
padding: 0;
font-family: 'Times New Roman','Open Sans','Helvetica Neue',Helvetica, sans-serif;
line-height: 1.45;
width: 100%;
height: 100vh;
background-size: 100% 100%;
position: relative;
}
header{
background-color: rgba(0, 0, 0, 0.399);
max-width: 100%;
padding: 30px 0;
font-family:'Times New Roman', Times, serif;
text-align: left;
color: white;
font-size: 1.3rem;
}
nav {
height: 50px;
width: 100%;
padding: 10px 0;
}
nav ul {
display: flex;
justify-content: flex-start;
margin: 0px 6px;
list-style-type: none;
}
nav ul li a {
color: #fff;
padding: 10px;
text-transform: uppercase;
margin-left: 30px;
text-decoration: none;
}
nav ul li a:hover,
a.active {
color: #fff;
text-decoration: none;
background-color: #efe3e35b;
border-radius: 5px;
}
.content-box{
margin: 220px auto;
padding: 10px 30px 20px 30px;
max-width: 1000px;
background-color: rgba(0, 0, 0, 0.399);
color: white;
font-size: 2rem;
}
.content-box a{
color: #fff;
padding: 10px;
text-transform: uppercase;
margin-left: 30px;
text-decoration: none;
background-color: #efe3e35b;
}
.content-box a:hover{
color: #fff;
text-decoration: none;
background-color: #1918185b;
border-radius: 5px;
}
.clear{
clear: both;
}
/* styling for about*/
#about{
margin: 120px auto;
max-width: 1000px;
font-size: 2rem;
}
#about p{
font-size: 1.5rem;
text-align: center;
}
/* styling for contact*/
#contact{
margin: 180px auto;
max-width: 1000px;
font-size: 1.5rem;
}
#contact p{
font-size: 1.5rem;
text-align: justify;
}
form{
background-color: rgba(1, 1, 1, 0.671);
color:white;
padding: 20px;
padding-bottom: 30px;
font-size: 1.2rem;
}
.btn{
color: black;
padding: 10px;
background-color: #f5f2f2b9;
border: none;
}
.btn:hover{
color: #fff;
text-decoration: none;
background-color: #1918185b;
border-radius: 5px;
}
.social{
text-align: center;
}
.social img{
width: 50px;
margin: 0 40px;
cursor: pointer;
}