-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
49 lines (43 loc) · 957 Bytes
/
style.css
File metadata and controls
49 lines (43 loc) · 957 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,body{
height: 100%;
width: 100%;
}
#bg{
height: 100%;
width: 100%;
background-image: url('https://images.unsplash.com/photo-1668027686570-aff6795ed3c1?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxlZGl0b3JpYWwtZmVlZHwxNHx8fGVufDB8fHx8&auto=format&fit=crop&w=1000&q=60');
background-size: cover;
background-position: center;
}
h1{
font-size: 50px;
font-weight: 300;
font-family: serif;
color: #fff;
position: absolute;
top: 30%;
left: 30%;
transform: translate(-50%,-50%);
}
button{
padding-left: 13px;
padding-right: 13px;
padding-top: 9px;
padding-bottom: 9px;
border-radius: 8px;
border-color: #fff;
color: #fff;
background-color: transparent;
font-size: 30px;
font-weight: 300;
cursor: pointer;
position: absolute;
top: 40%;
left: 30%;
transform: translate(-50%,-50%);
}