-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.css
More file actions
81 lines (70 loc) · 1.55 KB
/
Copy pathtest.css
File metadata and controls
81 lines (70 loc) · 1.55 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
*{
margin:0;
padding:0;
--main-color: #b3b798;
--text-one: black;
--background: #52664d;
}
body{
margin:0;
font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
font-size:17px;
color:var(--main-color);
line-height:1.6;
height: 100%;
background-color: var(--background);
}
#showcase{
background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url('https://jewishmuseummilwaukee.org/wp-content/uploads/funnel/Home-Funnel-Images.png');
background-size:cover;
background-position:center;
height:100vh;
display:flex;
flex-direction:row;
justify-content: flex-end;
align-items: flex-end;
text-align:center;
padding: 0;
}
#bar{
background-color: var(--background);
background-position: center;
width: 2000px;
display:flex;
flex-direction: row;
justify-content: flex-end;
align-items: flex-end;
text-align:center;
border-top-left-radius: 60px;
border-top-right-radius: 60px;
}
#text{
margin-top: 50px;
text-align: right;
margin-right: 50px;
}
#showcase h1{
font-size:60px;
line-height:1.2;
}
#showcase p{
margin-bottom:0;
font-size:35px;
}
#showcase .button{
font-size:30px;
text-decoration:none;
color:var(--main-color);
padding:20px 40px;
border-radius:10px;
margin-bottom:62px;
margin-right: 50px;
border:var(--main-color) 1px solid;
box-shadow: 0 10px 5px 10px rgba(0,0,0,.6);
}
#showcase .button:hover{
background:var(--background);
}
#showcase .button:active{
;
}