-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
133 lines (104 loc) · 1.88 KB
/
style.css
File metadata and controls
133 lines (104 loc) · 1.88 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
133
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
font-family: "Noto Kufi Arabic", sans-serif;
font-optical-sizing: auto;
font-style: normal;
background:linear-gradient(180deg,#071023 0%, #07162a 100%);
color: #e6eef6;
}
header {
display: flex;
justify-content: space-between;
}
.open-source {
display: flex;
align-items: center;
padding-right: 20px;
}
.open-source a {
color: #9aa6b2;
text-decoration: none;
}
.opens {
display: flex;
align-items: center;
}
#logo {
height: 100px;
width: auto;
}
nav {
border-top:#e6eef6 1px solid;
border-bottom: #e6eef6 1px solid;
background-color: #9aa6b2;
}
.nav-links {
margin:5px 0;
list-style: none;
display: flex;
gap: 20px;
overflow-x: auto;
justify-content: space-around;
white-space: nowrap;
padding-left: 10px;
padding-right: 10px;
}
.nav-links a {
text-decoration: none;
color:#071023;
font-weight: bold;
transition: color 0.3s;
font-size: 1.3rem;
}
.nav-links a:hover {
color: #e6eef6;
}
main {
padding: 20px;
min-height: 80vh;
display: block;
max-width: 1200px;
margin: 10px auto; /* centers horizontally */
}
main a {
color: #7c3aed;
}
.blur-box {
border:#7c3aed 1px solid;
background: #0b1220; /* semi-transparent background */
box-shadow: 0 1px 2px white;
border-radius: 12px;
padding: 20px;
}
footer {
text-align: center;
border-top:#9aa6b2 2px solid;
}
footer .support {
font-size: xx-small;
font-weight: bold;
margin-bottom: 2px;
}
footer .support a{
/* color: black;
text-decoration: none;
background: linear-gradient(180deg, #7b2a9f, #fdd82e);
border-radius: 4px;
padding: 0px; */
color: white;
text-decoration: none;
background: linear-gradient(180deg, green, black);
border-radius: 4px;
padding: 1px;
border: green solid 1px;
}
.mr {
margin-right: 30px;
}