Doubleupai commited on
Commit
69da580
1 Parent(s): 29a6504

Delete style.css

Browse files
Files changed (1) hide show
  1. style.css +0 -86
style.css DELETED
@@ -1,86 +0,0 @@
1
- body {
2
- font-family: Arial, sans-serif;
3
- margin: 0;
4
- padding: 0;
5
- }
6
-
7
- header {
8
- display: flex;
9
- justify-content: space-between;
10
- align-items: center;
11
- padding: 10px 20px;
12
- background-color: #282828;
13
- color: white;
14
- }
15
-
16
- header .logo {
17
- font-size: 24px;
18
- font-weight: bold;
19
- }
20
-
21
- header nav ul {
22
- list-style: none;
23
- display: flex;
24
- gap: 20px;
25
- }
26
-
27
- header nav ul li a {
28
- color: white;
29
- text-decoration: none;
30
- }
31
-
32
- header .upload-button button {
33
- background-color: #FF0000;
34
- color: white;
35
- border: none;
36
- padding: 10px 20px;
37
- cursor: pointer;
38
- }
39
-
40
- main {
41
- padding: 20px;
42
- }
43
-
44
- section {
45
- margin-bottom: 40px;
46
- }
47
-
48
- .modal {
49
- display: none;
50
- position: fixed;
51
- z-index: 1;
52
- left: 0;
53
- top: 0;
54
- width: 100%;
55
- height: 100%;
56
- overflow: auto;
57
- background-color: rgba(0,0,0,0.4);
58
- }
59
-
60
- .modal-content {
61
- background-color: #fefefe;
62
- margin: 15% auto;
63
- padding: 20px;
64
- border: 1px solid #888;
65
- width: 80%;
66
- max-width: 600px;
67
- }
68
-
69
- .close {
70
- color: #aaa;
71
- float: right;
72
- font-size: 28px;
73
- font-weight: bold;
74
- cursor: pointer;
75
- }
76
-
77
- .upload-options button {
78
- display: block;
79
- width: 100%;
80
- padding: 10px;
81
- margin: 10px 0;
82
- background-color: #4CAF50;
83
- color: white;
84
- border: none;
85
- cursor: pointer;
86
- }