forked from yesiamrajeev/Hacktoberfest2025
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTypeGuardai.css
More file actions
104 lines (93 loc) · 2.27 KB
/
TypeGuardai.css
File metadata and controls
104 lines (93 loc) · 2.27 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
/* TypeGuard AI Base Styles */
:root {
--primary-color: #007BFF; /* Primary blue for highlights */
--accent-color: #00BCD4; /* Cyan for status/alerts */
--background-dark: #1E1E1E; /* Dark background */
--text-light: #F0F0F0; /* Light text */
--code-background: #252526; /* Darker background for code blocks */
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: var(--background-dark);
color: var(--text-light);
margin: 0;
padding: 0;
line-height: 1.6;
}
a {
color: var(--primary-color);
text-decoration: none;
}
a:hover {
color: var(--accent-color);
text-decoration: underline;
}
/* Header Section */
.header {
background-color: #2D2D30;
padding: 20px 5%;
border-bottom: 3px solid var(--primary-color);
text-align: center;
}
.header h1 {
font-size: 2.5em;
margin: 0;
letter-spacing: 2px;
}
.header p {
color: #AAAAAA;
font-style: italic;
margin-top: 5px;
}
/* Highlight the 'TypeGuard' aspect */
.header h1 span {
color: var(--accent-color);
font-weight: bold;
}
/* Code Styling - Crucial for a developer project */
pre {
background-color: var(--code-background);
color: #D4D4D4;
padding: 15px;
border-radius: 5px;
overflow-x: auto; /* Handles long lines of code */
border: 1px solid rgba(0, 123, 255, 0.3);
}
code {
font-family: 'Consolas', 'Courier New', monospace;
font-size: 0.95em;
}
/* Inline code styling */
p code {
background-color: rgba(0, 123, 255, 0.1);
color: var(--primary-color);
padding: 2px 4px;
border-radius: 3px;
}
/* Feature/Contribution Card */
.contribution-card {
background-color: #2D2D30;
border-left: 5px solid var(--accent-color);
padding: 20px;
margin: 20px 0;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.contribution-card h3 {
color: var(--accent-color);
margin-top: 0;
}
/* Optional: Button style for GitHub Link */
.github-button {
display: inline-block;
background-color: var(--primary-color);
color: var(--text-light);
padding: 10px 20px;
border-radius: 5px;
margin-top: 15px;
transition: background-color 0.3s;
}
.github-button:hover {
background-color: #0056b3;
text-decoration: none;
}