-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshared-styles.css
More file actions
112 lines (95 loc) · 1.85 KB
/
shared-styles.css
File metadata and controls
112 lines (95 loc) · 1.85 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
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
padding: 20px;
}
.container {
max-width: 1400px;
margin: 0 auto;
background: white;
border-radius: 12px;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
overflow: hidden;
}
.header {
background: linear-gradient(135deg, #003366 0%, #0066cc 100%);
color: white;
padding: 30px 40px;
display: flex;
justify-content: space-between;
align-items: center;
}
.header h1 {
font-size: 28px;
font-weight: 600;
}
.user-info {
background: rgba(255,255,255,0.15);
padding: 10px 20px;
border-radius: 8px;
font-size: 14px;
}
.user-info strong {
display: block;
margin-bottom: 4px;
}
.nav {
background: #f8f9fa;
padding: 0;
border-bottom: 2px solid #e0e0e0;
display: flex;
flex-wrap: wrap;
}
.nav a {
padding: 18px 30px;
text-decoration: none;
color: #333;
font-weight: 500;
border-bottom: 3px solid transparent;
transition: all 0.3s;
}
.nav a:hover, .nav a.active {
background: white;
border-bottom-color: #0066cc;
color: #0066cc;
}
.nav a.active {
font-weight: 600;
}
.content {
padding: 40px;
}
.dashboard-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
margin-top: 30px;
}
.card {
background: white;
border: 2px solid #e0e0e0;
border-radius: 12px;
padding: 25px;
transition: all 0.3s;
cursor: pointer;
}
.card:hover {
border-color: #0066cc;
box-shadow: 0 8px 24px rgba(0,102,204,0.15);
transform: translateY(-4px);
}
.card-icon {
font-size: 36px;
margin-bottom: 15px;
}
.card h3 {
color: #003366;
margin-bottom: 10px;
font-size: 20px;
}
.card p {
color: #666;
line-height: 1.6;
}