source: CSS/Orders.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: 883 bytes
Line 
1
2* {
3 margin: 0;
4 padding: 0;
5 box-sizing: border-box;
6 color: blue;
7 font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
8}
9
10body {
11 background-color: rgb(233, 219, 219);
12}
13
14div {
15 padding: 10px 20px;
16 margin-top: 125px;
17 width: 80%;
18 display: flex;
19 flex-direction: column;
20 align-items: center;
21 margin-left: auto;
22 margin-right: auto;
23 gap: 10px;
24}
25
26a {
27 text-decoration: none;
28 background-color: aliceblue;
29 padding: 10px 20px;
30 border-radius: 48px;
31 width: 420px;
32 text-align: center;
33 vertical-align: middle;
34 line-height: 50px;
35 font-size: 1.35em;
36 display: inline-block;
37 box-shadow: 3px 3px 2px gray;
38 transition: 0.2s;
39}
40
41a:hover {
42 color: aqua;
43 user-select: none;
44 cursor: pointer;
45 background-color: rgb(255, 16, 195);
46 box-shadow: 10px 10px 10px gray;
47}
Note: See TracBrowser for help on using the repository browser.