-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
35 lines (33 loc) · 778 Bytes
/
main.css
File metadata and controls
35 lines (33 loc) · 778 Bytes
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
#wrap{
position: relative;;
max-width: 960px;
margin:0 auto;
height: 420px;
display:flex;
justify-content: center;
background-image: url("background1.jpg");
background-color: lightblue;
background-position: center; /* Center the image */
background-repeat: no-repeat; /* Do not repeat the image */
background-size: cover;
}
.btn{
font-family: arial;
text-transform: uppercase;
font-size: 15px;
font-weight: 500px;
width: 240px;
height: 60px;
line-height: 60px;
text-align: center;
display: inline-block;
border:3px solid #009688;
border-radius: 8px;
text-decoration: none;
margin: 120px 40px 0px 0px;
color: #069f;
position:relative;
overflow: hidden;
background-color: #ed6;
transition: .3s
}