forked from Avdhesh-Varshney/blog-script
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
124 lines (120 loc) · 2.71 KB
/
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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
body {
font-family: Arial, sans-serif;
background-color: #050816; /* Dark background color */
color: #fff; /* Light text color */
margin: 0;
padding: 0;
}
header {
display: flex;
justify-content: space-between;
padding: 20px;
font-size: 20px;
}
h1,
h2 {
text-align: center;
color: #eee; /* Light heading color */
}
#theme-toggle {
width: 50px;
height: 50px;
}
form {
max-width: 400px;
margin: 20px;
background: rgba(23, 17, 49, 0.5);
box-shadow: 0 8px 32px 0 rgba(21, 26, 106, 0.37); /* Dark form background color */
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border-radius: 10px;
border: 1px solid rgba(255, 255, 255, 0.18);
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(255, 255, 255, 0.1); /* White shadow */
}
.container {
display: flex;
justify-content: space-around;
padding: 50px;
}
label {
font-size: 25px;
font-weight: bold;
display: block;
margin-bottom: 5px;
color: #ccc; /* Light label color */
}
h2,
h3 {
text-align: center;
}
textarea,
input[type="number"] {
width: 100%;
padding: 10px;
margin-bottom: 10px;
border: 1px solid #555; /* Dark border color */
border-radius: 5px;
box-sizing: border-box;
background-color: #444; /* Dark input background color */
color: #fff; /* Light text color */
}
input[type="submit"] {
width: 100%;
padding: 10px;
border: none;
background-color: #007bff; /* Button color */
color: #fff; /* Light text color */
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
}
#decrypt-button {
width: 100%;
padding: 10px;
border: none;
background-color: #007bff; /* Button color */
color: #fff; /* Light text color */
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
}
input[type="submit"]:hover {
background-color: #0056b3; /* Button hover color */
}
input[type="Decrypt"] {
width: 100%;
padding: 10px;
border: none;
background-color: #007bff; /* Button color */
color: #fff; /* Light text color */
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
}
input[type="Decrypt"]:hover {
background-color: #0056b3; /* Button hover color */
}
#output {
max-width: 400px;
margin: 20px;
background-color: #333; /* Dark output background color */
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(255, 255, 255, 0.1); /* White shadow */
}
#plaintext {
color: white;
max-width: 400px;
margin: 20px auto;
background-color: #333; /* Dark output background color */
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(255, 255, 255, 0.1); /* White shadow */
}
.output-heading {
font-size: 1.2em;
color: #eee; /* Light heading color */
margin-bottom: 10px;
}