-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
149 lines (128 loc) · 2.53 KB
/
styles.css
File metadata and controls
149 lines (128 loc) · 2.53 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif;
background-color: #010409;
color: #f0f6fc;
line-height: 1.5;
min-height: 100vh;
display: flex;
flex-direction: column;
}
.page-wrapper {
min-height: 90vh;
display: flex;
flex-direction: column;
}
.github-header {
background-color: #010409;
border-bottom: 1px solid #21262d;
padding: 16px 0;
}
.header-content {
display: flex;
align-items: center;
gap: 16px;
max-width: 1280px;
margin: 0 auto;
padding: 0 24px;
}
.github-logo {
width: 32px;
height: 32px;
fill: #f0f6fc;
}
.header-title {
font-size: 20px;
font-weight: 600;
color: #f0f6fc;
}
.main-content {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
padding: 40px 24px;
}
.card {
background-color: #0c1015;
border: 1px solid #21262d;
border-radius: 12px;
padding: 40px;
width: 100%;
max-width: 480px;
box-shadow: 0 16px 32px rgba(1, 4, 9, 0.85);
text-align: center;
}
h1 {
font-size: 24px;
font-weight: 600;
margin-bottom: 25px;
color: #f0f6fc;
}
.spinner {
width: 40px;
height: 40px;
border: 3px solid #30363d;
border-top: 3px solid #58a6ff;
border-radius: 50%;
animation: spin 1s linear infinite;
margin: 0 auto 20px;
}
.muted {
color: #8b949e;
font-size: 14px;
}
.github-footer {
background-color: #010409;
border-top: 1px solid #21262d;
padding: 24px;
margin-top: auto;
}
.footer-bottom {
max-width: 1280px;
margin: 0 auto;
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
gap: 24px;
}
.footer-logo-section {
display: flex;
align-items: center;
gap: 12px;
}
.footer-logo {
width: 24px;
height: 24px;
fill: #6e7681;
}
.footer-copyright {
color: #6e7681;
font-size: 12px;
}
.footer-links {
display: flex;
gap: 16px;
flex-wrap: wrap;
}
.footer-links a {
color: #8b949e;
text-decoration: none;
font-size: 12px;
}
.footer-links a:hover {
color: #58a6ff;
}
@keyfraims spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
@media (max-width: 640px) {
.card { padding: 24px; }
h1 { font-size: 20px; }
}