faizee07 commited on
Commit
5faeb4a
·
verified ·
1 Parent(s): e923fbd

Delete style.css

Browse files
Files changed (1) hide show
  1. style.css +0 -98
style.css DELETED
@@ -1,98 +0,0 @@
1
- @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');
2
-
3
- body {
4
- font-family: 'Inter', sans-serif;
5
- background-color: #f0f2f5;
6
- color: #1c1e21;
7
- margin: 0;
8
- display: flex;
9
- justify-content: center;
10
- align-items: center;
11
- min-height: 100vh;
12
- }
13
-
14
- .container {
15
- background-color: #ffffff;
16
- padding: 40px 50px;
17
- border-radius: 12px;
18
- box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
19
- width: 100%;
20
- max-width: 700px;
21
- text-align: center;
22
- }
23
-
24
- h1 {
25
- font-size: 2.5em;
26
- color: #1877f2;
27
- margin-bottom: 10px;
28
- }
29
-
30
- p {
31
- color: #606770;
32
- font-size: 1.1em;
33
- margin-bottom: 30px;
34
- }
35
-
36
- .input-group {
37
- display: flex;
38
- margin-bottom: 20px;
39
- }
40
-
41
- #repo-url {
42
- flex-grow: 1;
43
- padding: 15px;
44
- border: 1px solid #dddfe2;
45
- border-radius: 6px 0 0 6px;
46
- font-size: 1em;
47
- outline: none;
48
- }
49
-
50
- #repo-url:focus {
51
- border-color: #1877f2;
52
- box-shadow: 0 0 0 2px rgba(24, 119, 242, 0.2);
53
- }
54
-
55
- button {
56
- padding: 15px 25px;
57
- border: none;
58
- background-color: #1877f2;
59
- color: white;
60
- font-size: 1em;
61
- font-weight: 600;
62
- border-radius: 0 6px 6px 0;
63
- cursor: pointer;
64
- transition: background-color 0.3s;
65
- }
66
-
67
- button:hover {
68
- background-color: #166fe5;
69
- }
70
-
71
- .loader {
72
- border: 4px solid #f3f3f3;
73
- border-top: 4px solid #1877f2;
74
- border-radius: 50%;
75
- width: 40px;
76
- height: 40px;
77
- animation: spin 1s linear infinite;
78
- margin: 30px auto;
79
- display: none; /* Hidden by default */
80
- }
81
-
82
- @keyframes spin {
83
- 0% { transform: rotate(0deg); }
84
- 100% { transform: rotate(360deg); }
85
- }
86
-
87
- #result {
88
- margin-top: 30px;
89
- padding: 20px;
90
- background-color: #f7f7f7;
91
- border: 1px solid #dddfe2;
92
- border-radius: 6px;
93
- text-align: left;
94
- white-space: pre-wrap; /* Allows text to wrap */
95
- font-family: 'Courier New', Courier, monospace;
96
- max-height: 400px;
97
- overflow-y: auto;
98
- }