-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
130 lines (108 loc) · 1.96 KB
/
styles.css
File metadata and controls
130 lines (108 loc) · 1.96 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
130
/* Custom styles for NIMBLE website */
.hero-section {
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
padding: 3rem 0;
margin-bottom: 2rem;
}
.hero-section h1 {
color: #008cff;
font-weight: bold;
}
.hero-section h2 {
color: #495057;
font-weight: 300;
}
.feature-section {
padding: 2rem 0;
border-bottom: 1px solid #dee2e6;
}
.feature-section:last-child {
border-bottom: none;
}
.nimble-logo {
max-width: 250px;
height: auto;
}
.team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
margin: 2rem 0;
}
.team-member {
text-align: center;
padding: 1rem;
}
.team-member img {
width: 120px;
height: 120px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 1rem;
}
.download-section {
background-color: #f8f9fa;
padding: 2rem;
border-radius: 0.5rem;
margin: 2rem 0;
}
.code-example {
background-color: #f8f9fa;
border-left: 4px solid #008cff;
padding: 1rem;
margin: 1rem 0;
}
.social-links {
display: flex;
gap: 1rem;
margin-top: 1rem;
}
.social-links a {
text-decoration: none;
color: #495057;
}
.social-links a:hover {
color: #008cff;
}
.blog-post-card {
border: 1px solid #dee2e6;
border-radius: 0.5rem;
padding: 1.5rem;
margin-bottom: 1.5rem;
transition: box-shadow 0.3s ease;
}
.blog-post-card:hover {
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.post-meta {
color: #6c757d;
font-size: 0.9rem;
margin-bottom: 0.5rem;
}
.recent-posts-widget {
background-color: #f8f9fa;
padding: 1.5rem;
border-radius: 0.5rem;
margin: 2rem 0;
}
.recent-posts-widget h3 {
color: #008cff;
border-bottom: 2px solid #008cff;
padding-bottom: 0.5rem;
margin-bottom: 1rem;
}
.recent-posts-widget ul {
list-style: none;
padding: 0;
}
.recent-posts-widget li {
margin-bottom: 0.5rem;
padding-left: 1rem;
position: relative;
}
.recent-posts-widget li::before {
content: "→";
position: absolute;
left: 0;
color: #008cff;
}