-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDashboard.css
105 lines (87 loc) · 1.35 KB
/
Dashboard.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
/* Dashboard.css */
body, html {
height: 100vh;
margin: 0;
padding: 0;
background-color: #f2f0f0;
}
.Header{
background-color: #6C9EFE;
display: flex;
align-items: center;
padding: 10px;
}
.dashboard-title {
font-size: 34px;
text-align: center;
}
.main {
display: flex;
justify-content: space-between;
margin: 20px;
}
.mainLeft {
width: 40%;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.mainRight {
width: 65%;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.Logout{
width: 120px;
}
a{
text-decoration: none;
color: black;
}
button {
margin-bottom: 10px;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
background-color: #007bff;
color: #fff;
}
#articleText {
height: 47vh;
}
button:hover {
background-color: #0056b3;
}
#articleText {
/* height: 47vh; */
}
/* Styling for inputs and textareas */
input[type="text"],
textarea {
width: 100%;
padding: 10px;
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 5px;
box-sizing: border-box;
}
/* Footer styling */
footer {
height: auto;
text-align: center;
margin-top: auto;
padding: 18px;
background-color: #6C9EFE;
}
/* Icon styling */
i {
margin-right: 5px;
}
#goHome {
position: fixed;
bottom: 20px;
left: 20px;
color: black;
}