source: CSS/Front.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: 2.2 KB
Line 
1 * {
2 margin: 0;
3 padding: 0;
4 }
5
6 body {
7 margin: 0;
8 padding: 0;
9 }
10
11 .TOSContainer {
12 background-color: transparent;
13 }
14
15 .container {
16 display: flex;
17 height: 100vh;
18 }
19
20 .left {
21 flex: 0 0 60%;
22 background-color: #CAF0F8;
23 color: white;
24 display: flex;
25 overflow: hidden;
26 transform: skew(21deg);
27 }
28
29 .right {
30 flex: 1;
31 background-color: white;
32 display: flex;
33 justify-content: center;
34 align-items: center;
35 flex-direction: column;
36 }
37
38 #logo {
39 font-size: 64px;
40 color: navy;
41 position: relative;
42 margin: auto;
43 left: 50%;
44 right: 50%;
45 transform: translateX(-15%);
46 }
47
48 h1, h2 {
49 font-family: Arial, sans-serif;
50 color: black;
51 }
52
53 h2 {
54 font-size: 32px;
55 font-weight: bold;
56 }
57
58 .buttons {
59 margin-top: 1px;
60 }
61
62 button {
63 font-family: Helvetica;
64 padding: 10px 75px;
65 margin: 5px;
66 font-size: 16px;
67 cursor: pointer;
68 border: none;
69 border-radius: 5px;
70 background-color: rgb(60, 70, 255);
71 color: white;
72 font-weight: bold;
73 }
74
75 button:hover {
76 opacity: 0.9;
77 background-color: hex(#2964aa);
78 }
79
80 .animatedContainer {
81 width: 100%;
82 display: flex;
83 white-space: nowrap;
84 overflow: hidden;
85 justify-content: flex-start;
86 align-items: center;
87 }
88
89 .animated-text {
90 user-select: none;
91 overflow: hidden;
92 white-space: nowrap;
93 opacity: 1;
94 position: relative;
95 margin-left: 20px;
96 display: inline;
97 }
98
99 .animated-text:before {
100 background-color: red;
101 width: 100%;
102 height: 100%;
103 top: 0;
104 left: 0;
105 }
106
107 .animated-text:nth-child(2) {
108 opacity: 0;
109 }
110
111 .overlay {
112 position: absolute;
113 top: 10px;
114 left: 25px;
115 display: flex;
116
117 }
118
119 .overlay h1 {
120 display: block;
121 }
122
123 .overlay div {
124 display: block;
125 }
126
127 .logo-container {
128 position: absolute;
129 z-index: 2;
130 top: 100px;
131 width: 100%;
132 height: 75px;
133 }
134
135 .logo-helper {
136 width: 50%;
137 height: 100%;
138 }
Note: See TracBrowser for help on using the repository browser.