forked from EutFurniture/Project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.css
More file actions
78 lines (69 loc) · 1.48 KB
/
App.css
File metadata and controls
78 lines (69 loc) · 1.48 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
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'Lato', sans-serif;
}
.home,
.services,
.products,
.sign-up {
display: flex;
height: 90vh;
align-items: center;
justify-content: center;
font-size: 3rem;
}
.dashboard,
.Products,
.Reports
{
display: flex;
height: 90vh;
align-items: center;
text-align: center;
justify-content: center;
font-size: 3rem;
}
.services {
background-image: url('images/img-2.jpg');
background-position: center;
background-size: cover;
background-repeat: no-repeat;
color: #fff;
font-size: 100px;
}
.products {
background-image: url('images/img-1.jpg');
background-position: center;
background-size: fill;
background-repeat: no-repeat;
color: #fff;
font-size: 100px;
}
.sign-up {
background-image: url('images/img-8.jpg');
background-position: center;
background-size: cover;
background-repeat: no-repeat;
color: #fff;
font-size: 100px;
}
.main {
text-align: center;
justify-content: center;
display: flex;
padding: 90px 0 90px 0;
background-color: rgb(128,128,128);
}
.sub-main{
display: flex;
justify-content: center;
height: 550px;
width: 35%;
box-shadow: 11px 12px 13px 12px rgb(207,207,207);
padding-top: 30px;
border-radius:60px ;
background-color: white;
}