-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyles.css
More file actions
92 lines (80 loc) · 1.63 KB
/
styles.css
File metadata and controls
92 lines (80 loc) · 1.63 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
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap");
:root {
--primary-color: #6c5ce7;
--secondary-color: #00cec9;
--danger-color: #ce5600;
--background-color: #1e272e;
--text-color: #dfe6e9;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Roboto", sans-serif;
background-color: var(--background-color);
color: var(--text-color);
line-height: 1.6;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.container {
max-width: 800px;
padding: 2rem;
text-align: center;
background-color: rgba(255, 255, 255, 0.05);
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
h1 {
font-size: 2.5rem;
margin-bottom: 2rem;
color: var(--primary-color);
}
.button-container {
display: flex;
justify-content: center;
gap: 1rem;
margin-bottom: 2rem;
}
.btn {
padding: 0.75rem 1.5rem;
font-size: 1rem;
font-weight: bold;
text-transform: uppercase;
border: none;
border-radius: 5px;
cursor: pointer;
transition: all 0.3s ease;
}
.btn-primary {
background-color: var(--primary-color);
color: #fff;
}
.btn-secondary {
background-color: var(--secondary-color);
color: #fff;
}
.btn-danger {
background-color: var(--danger-color);
color: #fff;
display: none;
}
.btn:hover {
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.output {
background-color: rgba(255, 255, 255, 0.1);
border-radius: 5px;
padding: 1rem;
white-space: pre-wrap;
word-wrap: break-word;
text-align: left;
font-size: 0.9rem;
max-height: 300px;
overflow-y: auto;
}