Reaperxxxx commited on
Commit
06c40d2
·
verified ·
1 Parent(s): 27e80af

Rename style.css to styles.css

Browse files
Files changed (2) hide show
  1. style.css +0 -28
  2. styles.css +85 -0
style.css DELETED
@@ -1,28 +0,0 @@
1
- body {
2
- padding: 2rem;
3
- font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
4
- }
5
-
6
- h1 {
7
- font-size: 16px;
8
- margin-top: 0;
9
- }
10
-
11
- p {
12
- color: rgb(107, 114, 128);
13
- font-size: 15px;
14
- margin-bottom: 10px;
15
- margin-top: 5px;
16
- }
17
-
18
- .card {
19
- max-width: 620px;
20
- margin: 0 auto;
21
- padding: 16px;
22
- border: 1px solid lightgray;
23
- border-radius: 16px;
24
- }
25
-
26
- .card p:last-child {
27
- margin-bottom: 0;
28
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
styles.css ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import url('https://fonts.googleapis.com/css2?family=Orbitron&display=swap');
2
+
3
+ * {
4
+ margin: 0;
5
+ padding: 0;
6
+ box-sizing: border-box;
7
+ font-family: 'Orbitron', sans-serif;
8
+ }
9
+
10
+ body {
11
+ background: #0a0a0a;
12
+ color: #ffffff;
13
+ display: flex;
14
+ justify-content: center;
15
+ align-items: center;
16
+ height: 100vh;
17
+ }
18
+
19
+ .container {
20
+ background: rgba(20, 20, 20, 0.9);
21
+ padding: 30px;
22
+ border-radius: 10px;
23
+ box-shadow: 0 0 15px #00e1ff;
24
+ text-align: center;
25
+ width: 90%;
26
+ max-width: 400px;
27
+ }
28
+
29
+ h1 {
30
+ font-size: 26px;
31
+ margin-bottom: 10px;
32
+ color: #00e1ff;
33
+ }
34
+
35
+ p {
36
+ font-size: 14px;
37
+ margin-bottom: 20px;
38
+ color: #ccc;
39
+ }
40
+
41
+ .input-group {
42
+ margin-bottom: 15px;
43
+ text-align: left;
44
+ }
45
+
46
+ label {
47
+ font-size: 14px;
48
+ color: #aaa;
49
+ }
50
+
51
+ input {
52
+ width: 100%;
53
+ padding: 10px;
54
+ margin-top: 5px;
55
+ border: none;
56
+ border-radius: 5px;
57
+ background: #1a1a1a;
58
+ color: #fff;
59
+ outline: none;
60
+ box-shadow: inset 0 0 10px #00e1ff;
61
+ }
62
+
63
+ button {
64
+ width: 100%;
65
+ padding: 12px;
66
+ margin-top: 10px;
67
+ border: none;
68
+ background: #00e1ff;
69
+ color: #000;
70
+ font-weight: bold;
71
+ font-size: 16px;
72
+ cursor: pointer;
73
+ border-radius: 5px;
74
+ transition: 0.3s ease-in-out;
75
+ }
76
+
77
+ button:hover {
78
+ background: #007a99;
79
+ box-shadow: 0 0 15px #00e1ff;
80
+ }
81
+
82
+ #message {
83
+ margin-top: 10px;
84
+ font-size: 14px;
85
+ }