-
Notifications
You must be signed in to change notification settings - Fork 31
/
Licensing.css
67 lines (55 loc) · 1021 Bytes
/
Licensing.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
header {
background-color: #4CAF50;
color: #fff;
padding: 1rem 0;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 100%;
margin: 0 auto;
padding: 0 1rem;
}
.logo {
font-size: 1.5rem;
font-weight: 700;
}
.nav-links {
list-style: none;
display: flex;
gap: 1rem;
}
.nav-links li {
padding: 0.5rem 1rem;
}
.nav-links a {
text-decoration: none;
color: #fff;
font-weight: 500;
}
.nav-links a.active {
background-color: #388E3C;
border-radius: 5px;
}
main {
max-width: 1200px;
margin: 2rem auto;
padding: 0 1rem;
}
.license-section {
background-color: #fff;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.license-section h1 {
margin-top: 0;
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 1rem 0;
margin-top: 2rem;
}