File tree
Expand file treeCollapse file tree1 file changed
+20
-13
lines changed Expand file treeCollapse file tree1 file changed
+20
-13
lines changed Original file line number | Diff line number | Diff line change |
---|
|
9 | 9 | font-family: Arial, sans-serif;
|
10 | 10 | line-height: 1.6;
|
11 | 11 | margin: 0;
|
12 |
| -padding: 20px; |
| 12 | +padding: 0; |
13 | 13 | background-color: #001f3f;
|
14 | 14 | color: #cdd3de;
|
15 | 15 | }
|
| 16 | +.container { |
| 17 | +width: 100%; |
| 18 | +max-width: 1200px; |
| 19 | +margin: 0 auto; |
| 20 | +padding: 20px; |
| 21 | +box-sizing: border-box; |
| 22 | +} |
16 | 23 | h1, h2 {
|
17 | 24 | color: #00c6ff;
|
18 | 25 | }
|
|
23 | 30 | a:hover {
|
24 | 31 | text-decoration: underline;
|
25 | 32 | }
|
26 |
| -.container { |
27 |
| -max-width: 800px; |
28 |
| -margin: 0 auto; |
29 |
| -text-align: center; |
30 |
| -} |
31 |
| -.graphic { |
32 |
| -margin: 20px 0; |
| 33 | +ul { |
| 34 | +text-align: left; |
| 35 | +padding-left: 20px; |
33 | 36 | }
|
34 | 37 | .graphic img {
|
35 | 38 | width: 100%;
|
36 |
| -max-width: 400px; |
| 39 | +max-width: 800px; |
37 | 40 | border-radius: 10px;
|
38 | 41 | box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
|
39 | 42 | }
|
40 |
| -ul { |
41 |
| -text-align: left; |
42 |
| -padding-left: 20px; |
| 43 | +@media (max-width: 768px) { |
| 44 | +h1, h2 { |
| 45 | +font-size: 1.5em; |
| 46 | +} |
| 47 | +.graphic img { |
| 48 | +max-width: 100%; |
| 49 | +} |
43 | 50 | }
|
44 | 51 | </style>
|
45 | 52 | </head>
|
@@ -73,7 +80,7 @@ <h2>Relevance to Cybersecurity</h2>
|
73 | 80 | </div>
|
74 | 81 |
|
75 | 82 | <h2>How to Run the Code</h2>
|
76 |
| -<p>To compile and run the code locally, use the following commands:</p> |
| 83 | +<p>Clone the repository and compile the code using a C++ compiler:</p> |
77 | 84 | <pre>
|
78 | 85 | g++ CS115_IP5_LuisCamachoJr.cpp -o output
|
79 | 86 | ./output
|
|
You can’t perform that action at this time.
0 commit comments