-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
54 lines (47 loc) · 894 Bytes
/
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
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
pre {
background-color: #080000;
padding: 10px;
overflow-x: auto;
}
code {
font-family: "Courier New", monospace;
font-size: 14px;
}
.python {
color: #e83e8c;
}
.copy-button {
display: inline-block;
background-color: #4caf50;
color: white;
border: none;
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.copy-button:hover {
background-color: #45a049;
}
.notification {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: #f44336;
color: white;
padding: 16px;
border-radius: 5px;
visibility: hidden;
opacity: 0;
transition: visibility 0s, opacity 0.3s ease;
}
.notification.show {
visibility: visible;
opacity: 1;
}