-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
54 lines (47 loc) · 920 Bytes
/
styles.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
49
50
51
52
53
54
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'lato', sans-serif;
}
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
width: 100%;
background: url('pexels-rkftr-4253620.jpg') no-repeat center center/ cover;
font-weight: bold;
}
.container {
border: 1px solid darkslategray;
width: 50%;
height: 400px;
text-align: center;
border-radius: 50px;
background-color: #fff;
border: none;
box-shadow: -1px 0px 25px 8px rgba(0,0,0,0.75);
}
h1 {
margin: 2rem 0rem 1rem;
color: goldenrod;
}
p {
font-size: 1.2rem;
padding: .2rem;
}
button {
color: #fff;
width: 30%;
height: 40px;
background-color: goldenrod;
border: none;
border-radius: 40px;
font-weight: bold;
margin-top: 10px;
}
button:active {
background-color: gold;
transition: .2s;
}