-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyles.css
More file actions
76 lines (65 loc) · 1.32 KB
/
styles.css
File metadata and controls
76 lines (65 loc) · 1.32 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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f0f0f0;
color: #333;
transition: background-color 0.3s, color 0.3s;
}
.container {
text-align: center;
background: #ffffff;
border-radius: 8px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
padding: 20px;
width: 300px;
}
h1 {
margin-bottom: 20px;
color: #4CAF50; /* Change the color of the heading */
}
button {
background-color: #4CAF50; /* Green button */
color: white;
border: none;
border-radius: 5px;
padding: 10px 15px;
cursor: pointer;
font-size: 16px;
margin: 5px;
transition: background-color 0.3s;
}
button:hover {
background-color: #45a049; /* Darker green on hover */
}
#copyButton {
background-color: #3498db;
}
#copyButton:hover {
background-color: #2980b9;
}
.output {
margin: 15px 0;
padding: 10px;
border: 1px solid #ddd;
border-radius: 5px;
background-color: #f9f9f9;
}
.dark-theme {
background-color: #333;
color: #000000;
}
.dark-theme .container {
background-color: #444;
border: 1px solid #555;
}
.dark-theme button {
background-color: #555;
}
.dark-theme button:hover {
background-color: #666;
}