-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp.component.css
More file actions
129 lines (108 loc) · 1.88 KB
/
app.component.css
File metadata and controls
129 lines (108 loc) · 1.88 KB
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
.content-wrapper {
display: flex;
flex-direction: column;
min-height: 100vh;
justify-content: center;
align-items: center;
padding: 20px;
background-color: #f5f5f5;
}
/* Login Container Styles */
.login-container {
width: 100%;
max-width: 400px;
margin: 0 auto;
}
.login-form {
background-color: #ffffff;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
padding: 30px;
}
.login-form h2 {
margin-top: 0;
margin-bottom: 20px;
color: #1976d2;
text-align: center;
}
.form-group {
margin-bottom: 16px;
}
.form-group label {
display: block;
margin-bottom: 6px;
font-weight: 500;
}
.form-group input {
width: 100%;
padding: 10px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 16px;
}
.error-message {
color: #d32f2f;
margin: 10px 0;
font-size: 14px;
}
.button-container {
margin-top: 20px;
}
button {
background-color: #1976d2;
color: white;
border: none;
border-radius: 4px;
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
transition: background-color 0.2s;
}
button:hover {
background-color: #1565c0;
}
.credentials-info {
margin-top: 20px;
padding-top: 15px;
border-top: 1px solid #eee;
font-size: 14px;
}
.credentials-info p {
margin: 5px 0;
}
/* Viewer Controls when authenticated */
.viewer-controls {
display: flex;
flex-direction: column;
align-items: center;
gap: 15px;
}
.user-info {
display: flex;
align-items: center;
gap: 15px;
}
.logout-btn {
background-color: #f44336;
}
.logout-btn:hover {
background-color: #d32f2f;
}
.open-pdf-btn {
font-size: 18px;
padding: 12px 25px;
}
/* Dialog customizations */
::ng-deep .e-dialog {
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
::ng-deep .e-dlg-header-content {
background-color: #1976d2;
color: white;
}
::ng-deep .e-dlg-header {
font-weight: 500;
}
::ng-deep .e-dlg-closeicon-btn {
color: white;
}