-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
128 lines (107 loc) · 2.26 KB
/
styles.css
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
/* css styles */
body {
/*direction: rtl;
text-align: right;*/
font-family: 'Alef', sans-serif;
font-size: 18px;
/*font-family: 'Press Start 2P', cursive;
background-image: url('/images/home_page.png');
background-size: cover;
background-repeat: no-repeat;
background-position: center;
background-color: rgba(0, 0, 0, 0.7);
background-color: black;
color: #00FF00; */
}
Headings
h1, h2, h3, h4, h5, h6 {
color: black;
}
/* Headings and other elements */
h1 {
font-size: 2.2em; /* Larger for main headings */
}
h2 {
font-size: 1.8em; /* Medium for sub-headings */
}
h3 {
font-size: 1.5em; /* Slightly smaller */
}
p {
font-size: 1.1em; /* Slightly larger for regular paragraph text */
}
footer {
font-size: 0.8em; /* Smaller font size for footer */
}
@media (max-width: 768px) {
body {
font-size: 14px; /* Smaller font size for mobile screens */
}
h1 {
font-size: 1.8em; /* Adjust heading size on smaller screens */
}
h2 {
font-size: 1.5em;
}
}
/*.homepage body {
background-image: url('/images/home_page.png') !important;
background-size: cover !important;
background-repeat: no-repeat !important;
background-position: center !important;
background-color: rgba(0, 0, 0, 0.7) !important; /* Semi-transparent background color */
}
/* Links
a {
color: #FF00FF;
}
/* Fallback for browsers that support target-new */
/*a:not([href^="#"]) {
target-new: tab;
}
/* Optional: Add an external link icon or indicator */
/*a:not([href^="#"])::after {
content: ' ↗';
}
/* Sidebar
.sidebar {
background-color: #111;
border: 4px solid #FF00FF;
padding: 10px;
color: #00FF00;
box-shadow: 0 0 10px #00FFFF;
}
/* Content
.content {
border: 4px solid #FF00FF;
padding: 10px;
box-shadow: 0 0 10px #00FFFF;
}
/* Buttons
button, .btn {
background-color: #FF4500;
color: #FFFFFF;
border: 2px solid #00FFFF;
padding: 10px 20px;
text-transform: uppercase;
font-family: 'Press Start 2P', cursive;
}
button:hover, .btn:hover {
background-color: #00FF00;
border-color: #FF00FF;
}
/* Blinking Text
.blinking-text {
color: #FFFF00;
animation: blink 1s step-end infinite;
}
@keyframes blink {
50% {
opacity: 0;
}
}
/* Images
img {
image-rendering: pixelated;
border: 2px solid #FF00FF;
}