-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbasdec.css
More file actions
123 lines (106 loc) · 1.82 KB
/
Copy pathbasdec.css
File metadata and controls
123 lines (106 loc) · 1.82 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
html {
background-image: linear-gradient(rgba(0, 0, 0, 0.527),rgba(0, 0, 0, 0.5)) , url(images/backlogo.png);
background-repeat: repeat;
background-size: auto;
background-color: #000000;
height: 100%;
margin: 0;
}
body {
font-family: Arial, sans-serif;
font-size: 1.1rem;
min-height: 100vh;
display: flex;
margin: 0 auto;
flex-direction: column;
}
main {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
padding-top: 120px
}
img {
border-radius: 10px;
}
p, li, h1, h3, h4, h2 {
color: #e0e0e0;
line-height: 25px;
}
a {
color: #7289da;
}
nav {
position: fixed;
background-color: #000000;
top: 0;
left: 0;
right: 0;
transition: all 0.3s ease-in-out;
color: #fff;
z-index: 1000;
font-size: xx-large;
}
nav .container {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 20px;
max-width: 1200px;
margin: 0 auto;
}
nav .logo {
font-size: 46px;
color: #fff;
}
nav ul {
display: flex;
list-style-type: none;
align-items: center;
gap: 10px;
}
nav a {
color: #fff;
text-decoration: none;
padding: 7px 15px;
transition: all 0.3s ease-in-out;
}
nav a:hover {
color: #da7272;
}
footer {
text-align: center;
background-color: #000;
color: #fff;
padding-top: 32px;
padding-bottom: 32px;
left: 0;
right: 0;
width: 100%;
}
.content-block {
border-radius: 10px;
padding: 15px;
max-width: 660px;
}
.content-block h2,
.content-block h3,
.content-block h4 {
margin-top: 0;
margin-bottom: 20px;
}
.content-block p {
margin: 0;
margin-bottom: 6px;
}
.content-block ul,
.content-block ol {
margin-bottom: 15px;
padding-left: 25px;
}
.content-block li {
margin-bottom: 8px;
line-height: 20px;
}