source: frontend/src/styles/SigninScreen.css@ ee05663

Last change on this file since ee05663 was 16237c4, checked in by Nace Gjorgjievski <nace.gorgievski123@…>, 22 months ago

Added Order Functionality

  • Property mode set to 100644
File size: 794 bytes
Line 
1.pageContainer {
2 min-height: 100vh;
3}
4
5.main {
6 margin-top: 20px;
7 flex: 1;
8 display: flex;
9 flex-direction: column;
10 align-items: center;
11}
12
13.formCointainer {
14 width: 400px;
15}
16
17.shipPC {
18 display: flex;
19 flex-direction: column;
20 justify-content: center;
21 align-items: center;
22}
23
24.shipPC .checkout-steps {
25 width: 70%;
26}
27
28.submitBtnContainer {
29 margin-top: 20px;
30 display: flex;
31 align-items: center;
32 justify-content: center;
33}
34
35.registerParagraph {
36 margin-top: 10px;
37 text-align: center;
38}
39
40@media only screen and (max-width: 440px) {
41 .formCointainer {
42 width: 100%;
43 }
44}
45
46@media only screen and (max-width: 559px) {
47 .shipPC .checkout-steps {
48 width: 100%;
49 }
50}
51
52@media only screen and (max-width: 331px) {
53 .shipPC .checkout-steps {
54 display: none;
55 }
56}
Note: See TracBrowser for help on using the repository browser.