-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
95 lines (85 loc) · 1.79 KB
/
Copy pathstyles.css
File metadata and controls
95 lines (85 loc) · 1.79 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
body, html {
margin: 0;
padding: 0;
overflow: hidden;
height: 100%;
background: black;
color: white;
font-family: 'Courier New', Courier, monospace;
text-align: center;
}
h1 {
margin-top: 40px;
font-size: 2.5em;
text-shadow: 0 0 8px white;
}
.container {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 10;
width: 80%;
}
.toggle-container {
display: flex;
justify-content: center;
margin-bottom: 20px;
}
.toggle-btn {
background: rgba(255, 255, 255, 0.05);
color: white;
border: 1px solid rgba(255, 255, 255, 0.3);
border-radius: 10px;
padding: 10px 20px;
font-size: 1.1em;
cursor: pointer;
margin: 0 10px;
transition: 0.3s;
}
.toggle-btn.active {
background: white;
color: black;
box-shadow: 0 0 15px white;
}
textarea {
width: 90%;
height: 100px;
margin: 10px 0;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.3);
border-radius: 15px;
color: white;
font-size: 1.1em;
padding: 10px;
resize: none;
backdrop-filter: blur(6px);
transition: 0.3s;
outline: none;
}
textarea:focus {
border: 1px solid white;
box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
button {
margin: 10px;
padding: 10px 20px;
background: rgba(255, 255, 255, 0.05);
color: white;
border: 1px solid rgba(255, 255, 255, 0.3);
border-radius: 10px;
font-size: 1.1em;
cursor: pointer;
transition: 0.3s;
}
button:hover {
background: white;
color: black;
box-shadow: 0 0 15px white;
}
canvas {
position: absolute;
top: 0;
left: 0;
z-index: 1;
}