-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
132 lines (109 loc) · 2.27 KB
/
style.css
File metadata and controls
132 lines (109 loc) · 2.27 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
131
132
/*
Copyright 2021-2025 TTBT Enterprises LLC
This file is part of c2FmZQ (https://c2FmZQ.org/).
c2FmZQ is free software: you can redistribute it and/or modify it under the
terms of the GNU General Public License as published by the Free Software
Foundation, either version 3 of the License, or (at your option) any later
version.
c2FmZQ is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with
c2FmZQ. If not, see <https://www.gnu.org/licenses/>.
*/
body {
font-family: 'Roboto', sans-serif;
margin: 0;
background-color: #f5f5f5;
}
.navbar {
background-color: #fff;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
padding: 1rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.navbar-brand {
font-weight: 500;
font-size: 1.5rem;
text-decoration: none;
color: #333;
}
.navbar-brand img {
vertical-align: middle;
}
.navbar-nav {
list-style: none;
margin: 0;
padding: 0;
display: flex;
}
.nav-item {
margin-left: 1rem;
}
.nav-link {
text-decoration: none;
color: #555;
font-weight: 500;
}
.hero {
background: linear-gradient(30deg, skyblue, slateblue);
color: white;
padding: 4rem 2rem;
text-align: center;
}
.hero h1 {
font-size: 3rem;
margin-bottom: 1rem;
}
.hero p {
font-size: 1.25rem;
}
.container {
padding: 2rem;
}
.section-title {
text-align: center;
font-size: 2rem;
margin-bottom: 2rem;
}
.card-deck {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.card {
background-color: #fff;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
padding: 2rem;
display: flex;
flex-direction: column;
}
.card-title {
font-size: 1.5rem;
margin-bottom: 1rem;
}
.card-text {
flex-grow: 1;
}
.btn {
display: inline-block;
background-color: #4285f4;
color: white;
padding: 0.75rem 1.5rem;
border-radius: 4px;
text-decoration: none;
text-align: center;
margin-top: 1rem;
}
.btn:hover {
background-color: #3367d6;
}
.footer {
background-color: #333;
color: white;
text-align: center;
padding: 2rem;
}