-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
125 lines (108 loc) · 2.89 KB
/
style.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
body {
background-color: #000;
color: #fff;
font-family: sans-serif;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.container {
text-align: center;
padding: 50px;
border-radius: 10px;
}
a{
font-family: 'Roboto';
color: white;
text-decoration: none;
}
h1 {
font-size: 3em;
font-family: 'Pacifico';
margin-bottom: 10px;
}
p {
font-size: 1.2em;
}
.grid-container {
display: flex;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive columns */
gap: 20px; /* Spacing between grid items */
padding: 20px; /* Padding for the entire grid */
}
.grid-item {
text-align: center;
border-radius: 10px; /* Rounded corners for grid items */
padding: 20px; /* Padding for content within grid items */
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for grid items */
animation: glow 2s infinite alternate; /* Apply glow animation */
}
.grid-item img {
display: block; /* Ensures image fills the grid item width */
max-width: 100%; /* Restricts image size to fit within the grid item */
margin-bottom: 10px; /* Spacing between image and text */
}
.grid-item p {
font-size: 1em; /* Slightly smaller text for framework names */
margin: 0; /* Remove default margin for better spacing */
}
/* Animation styles for the glow effect (optional) */
@keyframes glow {
from { box-shadow: 0 0 10px rgba(255, 0, 255, 0.2); }
to { box-shadow: 0 0 20px rgba(255, 0, 255, 0.5); }
}
.modal {
display: none;
position: fixed;
z-index: 1;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0, 0, 0, 0.9); /* Black background */
}
.modal-content {
background-color:#020510; /* Dark background */
margin: 15% auto;
padding: 20px;
border-radius: 10px; /* Rounded corners */
box-shadow: 0 0 10px rgba(255, 0, 255, 0.2); /* Purple glow effect */
color: #fff; /* White text color */
max-width: 800px; /* Set maximum width */
font-size: 16px; /* Increase font size */
line-height: 1.5; /* Increase line height for better readability */
font-family: 'Arial', sans-serif; /* Change font family */
}
.modal-content p {
margin-bottom: 10px; /* Add spacing between paragraphs */
}
.modal-content code {
display: block;
background-color: #37383a; /* Dark background for code */
padding: 5px 10px;
border-radius: 3px;
margin-bottom: 5px;
font-family: 'Courier New', Courier, monospace; /* Monospace font for code */
}
.button {
display: inline-block;
padding: 10px 20px;
background-color: #bf05e4;
color: white;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease;
border: 2px solid transparent; /* Add border property */
}
.button:hover {
background-color: #020510;
border-color: white; /* Change border color on hover */
}
.modal-content code {
display: block;
background-color: #000000;
color: white;
}