-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
78 lines (68 loc) · 1.4 KB
/
styles.css
File metadata and controls
78 lines (68 loc) · 1.4 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
* {
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
body {
overflow: hidden;
}
.wrapper {
position: relative;
height: 100vh;
display: flex;
flex-direction: column;
/* background-image: url("https://images.unsplash.com/photo-1544348843-f8d23bbc2985?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=334&q=80"); */
background-size: cover;
overflow: hidden;
}
.main {
width: fit-content;
background-color: rgba(0, 0, 0, 0.514);
color: white;
display: flex;
flex-direction: column;
margin: auto;
padding: 25px;
border-radius: 50px;
}
h1,
h3 {
text-align: center;
}
h1 {
font-size: 30px;
}
h3 {
font-size: 20px;
color: rgb(255, 64, 64);
}
span {
color: rgb(65, 132, 255);
}
#play {
height: fit-content;
width: fit-content;
position: absolute;
left: 50%;
top: 4%;
transform: translate(-50%);
color: white;
background-color: rgba(0, 0, 0, 0.514);
border: none;
padding: 0.5em;
border-radius: 15px;
cursor: pointer;
font-size: large;
}
@media screen and (min-width: 1000px) {
h1 {
font-size: 60px;
}
h3 {
font-size: 35px;
}
.wrapper {
/* background-image: url("https://images.unsplash.com/photo-1544348843-a72ed658f90c?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=750&q=80"); */
}
}