-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
172 lines (141 loc) · 2.8 KB
/
Copy pathstyle.css
File metadata and controls
172 lines (141 loc) · 2.8 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
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
/* write your styles here */
body {
margin: 0;
}
/* Marquee start */
/* .marquee {
height: 25px;
overflow: hidden;
position: relative;
}
.marquee div {
width: 200%;
height: 30px;
position: absolute;
overflow: hidden;
animation: marquee 5s linear infinite;
}
.marquee span {
float: left;
width: 50%;
}
@keyframes marquee {
0% { left: 0; }
100% { left: -100%; }
} */
main
{
background: url('images/floral.png');
background-repeat: repeat;
background-size: fill;
}
marquee {
font-family: 'Josefin Sans', sans-serif;
height: 2em;
background-color: #ed484c;
color: #f1f1f1;
font-size: 14px;
font-weight: bolder;
padding-top: 1%;
}
mark {
background-color: yellow;
}
/* Marquee end */
/* header start */
header {
font-family: 'Josefin Sans', sans-serif;
display: flex;
justify-content: space-between;
flex-direction: row;
background-color: #4c4c4c;
color: #c5c5c5;
font-size: 16px;
}
#logo {
padding: 8px 0 5px 10px;
}
header ul {
padding: 8px 0 5px 10px;
display: flex;
list-style-type: none;
}
li {
margin-right: 20px;
}
/* header end */
/* main start */
#about_us {
display: flex;
flex-direction: column;
align-items: center;
background: rgb(237, 45, 49, 0.5);
background-size: fill;
}
#about_us h1 {
font-family: 'Josefin Sans', sans-serif;
margin-top: 90px;
font-weight: bold;
font-size: 2.7em;
}
.highlight_para {
font-family: 'Montserrat', sans-serif;
border-top: 1px black solid;
border-bottom: 1px black solid;
padding: 20px 0 20px 0;
max-width: 600px;
text-align: center;
}
#about_us button {
font-family: 'Montserrat', sans-serif;
border: none;
font-size: 1.5em;
background-color: #170d0e;
color: #f18d97;
padding: 10px 2em 10px 2em;
height: 2em;
margin-bottom: 30px;
}
#services_main {
padding: 10px;
grid-gap: 10%;
border: #170d0e 2px solid;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 9fr));
}
#services {
/* position: absolute; */
background: rgb(109, 108, 106, 0.1);
}
h2 {
font-family: 'Rochester', cursive;
text-align: center;
font-size: 2em;
}
#categories {
text-align: center;
border: #170d0e solid 2px;
}
#categories i {
color: black;
}
#services_main figcaption {
text-align: center;
}
/* main end */
#categories h3 {
font-family: 'Montserrat', sans-serif;
font-weight: bold;
}
#categories p {
padding: 10px;
font-family: 'Montserrat', sans-serif;
font-weight: 100;
}
#abt_portfolio {
display: flex;
flex-direction: column;
align-items: center;
background: rgb(135, 110, 69, 0.3);
background-size: fill;
}