-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
92 lines (71 loc) · 1.46 KB
/
style.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
@import url('https://fonts.googleapis.com/css2?family=Gothic+A1:wght@400;900&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
height: 100vh;
background: #c0bfbf;
display: grid;
place-items: center;
}
.button{
display: flex;
justify-content: center;
width: 430px;
height: 550px;
background: linear-gradient(to bottom, #adafb3 50%, #c7c7c9 80%);
box-shadow: 4px 4px 18px #7e7e7e, -4px -4px 20px #f8f8f8;
position: relative;
}
.youtube{
width: 190px;
height: 130px;
position: absolute;
top: 100px;
display: flex;
justify-content: center;
align-items: center;
background: #868681;
border-radius: 25px;
box-shadow: inset 6px 6px 9px #484541, inset -4px -4ox 14px #5c5c58;
opacity: .7;
}
.play{
width: 0;
height: 0;
border-top: 30px solid transparent;
border-bottom: 30px solid transparent;
border-left: 50px solid #adafb3;
filter: drop-shadow(1px 2px 5px #424242);
}
.content{
position: absolute;
top: 350px;
color: #edeff2;
text-align: center;
font-family: "Gothic A1",sans-serif;
opacity: .9;
}
.content p{
font-size: 17px;
}
.content h1{
font-size: 18px;
padding-top: 5px;
opacity: .8;
}
.content h2{
margin-top: 5px;
font-size: 18px;
font-weight: 400;
}
.logo{
margin-top: 30px;
font-size: 40px;
}
.logo span{
letter-spacing: -.05em;
font-weight: 600;
}