sedefiizm commited on
Commit
ab1a658
·
verified ·
1 Parent(s): dbc4e43

Create App.css

Browse files
Files changed (1) hide show
  1. App.css +95 -0
App.css ADDED
@@ -0,0 +1,95 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .app-container {
2
+ font-family: Arial, sans-serif;
3
+ }
4
+
5
+ .header {
6
+ display: flex;
7
+ justify-content: space-between;
8
+ align-items: center;
9
+ background-color: #3f5b8f;
10
+ color: white;
11
+ padding: 10px 20px;
12
+ width: 100%;
13
+ position: fixed;
14
+ top: 0;
15
+ left: 0;
16
+ z-index: 100;
17
+ }
18
+
19
+ .logo {
20
+ font-size: 1.5rem;
21
+ font-weight: bold;
22
+ }
23
+
24
+ .header-right {
25
+ display: flex;
26
+ align-items: center;
27
+ }
28
+
29
+ .new-project {
30
+ display: flex;
31
+ align-items: center;
32
+ margin-right: 20px;
33
+ }
34
+
35
+ .profile {
36
+ width: 35px;
37
+ height: 35px;
38
+ border-radius: 50%;
39
+ overflow: hidden;
40
+ }
41
+
42
+ .profile-pic {
43
+ width: 100%;
44
+ height: 100%;
45
+ object-fit: cover;
46
+ }
47
+
48
+ .side-panel {
49
+ background-color: #f4f4f4;
50
+ border-radius: 10px;
51
+ padding: 15px;
52
+ position: fixed;
53
+ top: 70px;
54
+ left: 20px;
55
+ width: 300px;
56
+ height: calc(100% - 80px);
57
+ overflow-y: auto;
58
+ }
59
+
60
+ textarea {
61
+ width: 100%;
62
+ height: 80px;
63
+ resize: none;
64
+ margin-bottom: 15px;
65
+ padding: 10px;
66
+ }
67
+
68
+ .buttons {
69
+ display: flex;
70
+ justify-content: space-between;
71
+ margin-top: 10px;
72
+ }
73
+
74
+ button {
75
+ background-color: #4a6fa1;
76
+ color: white;
77
+ border: none;
78
+ padding: 10px 20px;
79
+ border-radius: 5px;
80
+ cursor: pointer;
81
+ }
82
+
83
+ button:hover {
84
+ background-color: #3b5b85;
85
+ }
86
+
87
+ .image-container {
88
+ margin-left: 350px;
89
+ margin-top: 100px;
90
+ }
91
+
92
+ img {
93
+ max-width: 100%;
94
+ border-radius: 10px;
95
+ }