Skip to content

Commit 204a17b

Browse files
author
github-actions
committed
[docs] @Breakthrough: Update Documentation
Source: 4.x-cuda (5f45525)
1 parent dd9d710 commit 204a17b

1 file changed

Lines changed: 132 additions & 0 deletions

File tree

style.css

Lines changed: 132 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,132 @@
1+
body {
2+
font-family: 'Noto Sans', sans-serif;
3+
background-color: #1a1a1a;
4+
color: #ffffff;
5+
margin: 0;
6+
line-height: 1.6;
7+
}
8+
9+
.container {
10+
max-width: 960px;
11+
margin: 0 auto;
12+
padding: 0 20px;
13+
}
14+
15+
header {
16+
background-color: #2c2c2c;
17+
padding: 40px 0;
18+
text-align: center;
19+
}
20+
21+
header h1 {
22+
font-size: 3em;
23+
margin: 0;
24+
font-weight: 700;
25+
}
26+
27+
header p {
28+
font-size: 1.2em;
29+
font-weight: 300;
30+
}
31+
32+
main {
33+
padding: 40px 0;
34+
}
35+
36+
.download-section {
37+
background-color: #2c2c2c;
38+
padding: 40px;
39+
text-align: center;
40+
border-radius: 8px;
41+
}
42+
43+
.download-section h2 {
44+
font-size: 2.5em;
45+
margin-top: 0;
46+
font-weight: 500;
47+
}
48+
49+
.version {
50+
font-size: 1.2em;
51+
margin-bottom: 20px;
52+
font-weight: 300;
53+
}
54+
55+
.download-button {
56+
display: inline-block;
57+
background-color: #76b900;
58+
color: #ffffff;
59+
padding: 15px 30px;
60+
text-decoration: none;
61+
font-size: 1.2em;
62+
font-weight: 500;
63+
border-radius: 4px;
64+
transition: background-color 0.3s ease;
65+
}
66+
67+
.download-button:hover {
68+
background-color: #88d400;
69+
}
70+
71+
.eula {
72+
margin-top: 20px;
73+
font-size: 0.9em;
74+
}
75+
76+
.eula a {
77+
color: #76b900;
78+
}
79+
80+
.about-section {
81+
margin-top: 40px;
82+
}
83+
84+
.about-section h2 {
85+
font-size: 2em;
86+
font-weight: 500;
87+
}
88+
89+
pre {
90+
background-color: #2c2c2c;
91+
padding: 20px;
92+
border-radius: 4px;
93+
white-space: pre-wrap;
94+
word-wrap: break-word;
95+
}
96+
97+
code {
98+
font-family: 'Courier New', Courier, monospace;
99+
}
100+
101+
footer {
102+
background-color: #2c2c2c;
103+
text-align: center;
104+
padding: 20px 0;
105+
margin-top: 40px;
106+
font-size: 0.9em;
107+
}
108+
109+
footer a {
110+
color: #76b900;
111+
text-decoration: none;
112+
}
113+
.platform-selection {
114+
display: flex;
115+
justify-content: space-around;
116+
margin-bottom: 30px;
117+
}
118+
119+
.platform {
120+
text-align: center;
121+
}
122+
123+
.platform h3 {
124+
margin-bottom: 15px;
125+
font-weight: 500;
126+
}
127+
128+
.download-button.disabled {
129+
background-color: #555;
130+
cursor: not-allowed;
131+
pointer-events: none;
132+
}

0 commit comments

Comments
 (0)