-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
72 lines (65 loc) · 1.44 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
/* style.css */
.button-container {
display: flex;
/* justify-content: center; */
align-items: center;
gap: 20px;
padding: 20px;
height: 90vh;
}
.center-button {
background: linear-gradient(to right, #16a4c4, #33d4ff);
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-flex;
justify-content: center;
align-items: center;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
transition: transform 0.2s, background-color 0.2s;
width: 400px;
height: 400px;
border-radius: 25px;
box-shadow: 0 10px 15px rgba(0,0,0,0.2);
}
.center-button:hover {
background: linear-gradient(to right, #33d4ff, #16a4c4);
transform: translateY(-5px);
}
.center-button:active {
transform: translateY(0);
}
.center-button.pressed {
transform: scale(0.9);
box-shadow: inset 0 0 5px rgba(0,0,0,0.3);
background-color: #388E3C;
}
.console-div {
float: left;
transform: translateX(10vw) translateY(10vh);
background-color: #000;
color: #fff;
padding: 10px;
border-radius: 5px;
font-family: monospace;
box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
width: 400px;
}
.console-div p {
margin: 0px 0 10px;
}
.console-div a {
color: green;
}
.command-line::before {
content: "$ ";
color: purple;
font-weight: bold;
}
.button-wrapper img {
width: 100%;
}