-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathstyle.css
More file actions
97 lines (87 loc) · 1.65 KB
/
style.css
File metadata and controls
97 lines (87 loc) · 1.65 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
96
97
/* Reset some default styles */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li {
margin: 0;
padding: 0;
list-style: none;
}
/* Set background and text colors */
body {
background-color: #1a1a1a;
/* Dark gray background */
color: goldenrod;
/* Fiery orange text color */
font-family: 'Merienda One', cursive;
/* Dragon font */
}
/* Optional styling for header and footer */
header,
footer {
background-color: #333;
color: #ff9933;
padding: 10px;
}
/* Style the card */
.card {
background-color: #333;
border: 2px solid #ff9933;
border-radius: 12px;
padding: 15px;
}
/* Style the textarea */
.md-textarea {
background-color: #1a1a1a;
color: #ff9933;
border: 2px solid #ff9933;
border-radius: 8px;
padding: 10px;
}
/* Style primary buttons */
.btn-primary {
background-color: #ff9933;
border-color: #ff9933;
border-radius: 5px;
padding: 10px 20px;
color: #fff;
font-weight: bold;
cursor: pointer;
}
.btn-primary:hover {
background-color: #ff8000;
border-color: #ff8000;
}
.hacker-btn {
background-color: #000;
color: blue;
border: 1px solid blue;
font-size: 18px;
padding: 10px 20px;
cursor: pointer;
position: relative;
overflow: hidden;
transition: all 0.3s ease;
}
.hacker-btn::before {
content: "";
position: absolute;
background: blue;
top: 0;
left: -100%;
width: 100%;
height: 100%;
transition: all 0.3s ease;
}
.hacker-btn:hover::before {
left: 100%;
}
.hacker-btn:hover {
color: #000;
}