-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfirst-page.css
50 lines (47 loc) · 917 Bytes
/
first-page.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
*{
margin:0;
padding:0;
box-sizing: border-box;
}
.mainbody{
width: 100%;
background: black;
color:whitesmoke;
margin-left: 20px;
}
.content{
margin-left: 500px;
padding-top: 150px;
line-height: 50px;
}
.middle_body{
background-image: url('profile\ photo/vincentiu-solomon-ln5drpv_ImI-unsplash.jpg');
height: 600px;
width: 100%;
background-size: contain;
background-position: center;
}
body{
background:black ;
font-family: Arial, Helvetica, sans-serif;
}
#welcome{
font-size: 3.5rem;
}
.content_description{
font-size: 2.5rem;
background-color: rgb(228, 139, 173);
width: 370px;
}
.content_button{
padding: 0.5rem 2rem 0.5rem ;
background-color: whitesmoke;
border:none;
outline:none;
transition: 1s all;
}
.content_button:hover{
background-color: black;
color:whitesmoke;
cursor: pointer;
}