source: CSS/AboutAndPrivacy.css

Last change on this file was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 6 days ago

Upload project files

  • Property mode set to 100644
File size: 565 bytes
Line 
1
2* {
3 margin: 0;
4 padding: 0;
5}
6
7body {
8 display: flex;
9 justify-content: center;
10 align-items: center;
11 flex-direction: column;
12 min-height: 100vh;
13 gap: 19px;
14 background-color: rgb(255, 255, 255);
15}
16
17.container {
18 text-align: center;
19 max-width: 800px;
20 padding: 20px;
21 border: 1px solid rgb(207, 207, 207);
22 border-radius: 10px;
23 background-color: #f9f9f9;
24}
25
26h1 {
27 font-size: 36px;
28 margin-bottom: 10px;
29}
30
31.container p {
32 text-align: justify;
33 line-height: 1.6;
34 color: #666;
35 font-size: 17px;
36}
Note: See TracBrowser for help on using the repository browser.