-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
93 lines (83 loc) · 1.79 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
* {
margin: 0;
padding: 0;
box-sizing: border-box;
overflow: hidden;
}
body {
display: flex;
flex-direction: column;
height: 100vh;
background-color: black;
justify-content: center;
align-items: center;
}
div {
position: relative;
}
p {
position: absolute;
left: 10px;
top: 10px;
margin: 0;
z-index: 10;
color: white;
font-family: sans-serif;
font-size: 14px;
}
.screen {
position: absolute;
transition: transform 1.5s ease-in;
;
transform: translateY(-1000px);
background-color: rgba(57, 56, 56, 0.84);
display: inline-block;
width: 1024px;
padding: 20px;
}
.screen.down {
transform: translateY(0px);
}
h5 {
color: rgb(255, 255, 255);
text-align: center;
font-family: sans-serif;
font-size: 25px;
}
.button-27 {
appearance: none;
background-color: #000000;
border: 2px solid #1A1A1A;
border-radius: 15px;
box-sizing: border-box;
color: #FFFFFF;
cursor: pointer;
display: inline-block;
font-family: Roobert, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-size: 16px;
line-height: normal;
margin: 0;
min-height: 60px;
min-width: 0;
outline: none;
text-align: center;
text-decoration: none;
padding: 20px 30px;
margin-top: 20px;
transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
will-change: transform;
}
.button-27:disabled {
pointer-events: none;
}
.button-27:hover {
box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
transform: translateY(-2px);
}
.button-27:active {
box-shadow: none;
transform: translateY(0);
}