source: source/MovieZilla-master/src/main/resources/static/css/style.css@ fc7ec52

Last change on this file since fc7ec52 was fc7ec52, checked in by darkopopovski <darkopopovski39@…>, 22 months ago

all files

  • Property mode set to 100644
File size: 4.9 KB
Line 
1@import url('https://fonts.googleapis.com/css?family=Montserrat:500');
2@import url('https://fonts.googleapis.com/css2?family=Crete+Round&family=Roboto:ital,wght@0,900;1,900&display=swap');
3
4:root {
5 --shadow-color: #FF9E9E;
6 --shadow-color-light: white;
7}
8
9.navbar {
10 max-width: 100%;
11 height: 100%;
12 background: rgba(0,0,0,0.25);
13}
14
15header {
16 display: flex;
17 justify-content: center;
18 align-items: center;
19 padding: 30px 10%;
20 max-width: 100%;
21 height: 10%;
22 background-color: rgb(0, 0, 0, 0.25);
23 border: none;
24}
25
26table{
27 color: white;
28 font-size: 0.3rem;
29 background: rgba(255,255,255,0.05);
30}
31
32img {
33 width: 120px;
34 height: 120px;
35}
36html{
37 text-align: center;
38}
39body {
40 padding: 0;
41 margin: 0;
42 max-width: 100%;
43 background-image: url('giphy33.webp');
44 object-fit: cover;
45 height: 100vh;
46 background-size: cover;
47 background-repeat: no-repeat;
48 text-align: center;
49}
50
51
52li,
53a:not(.btn) {
54 font-family: "Montserrat", sans-serif;
55 font-weight: 500;
56 font-size: 1.2rem;
57 text-decoration: none;
58 color: white;
59 padding: 10%;
60 list-style: none;
61}
62
63h1{
64 font-family: 'Roboto', sans-serif;
65 font-width: 900;
66 font-size: 5rem;
67
68}
69
70.right {
71 display: flex;
72 align-items: center;
73 justify-content: center;
74 background-color: rgb(0, 225, 255, 0.05);
75 border-radius: 10%;
76 flex-direction: row;
77 margin-left: 25%;
78 width: 17%;
79 height: 2%;
80}
81
82.right a {
83 margin: -5px;
84}
85.navbar{
86 max-width: 100%;
87 height: 100vh;
88}
89
90.reg {
91 color: rgb(255, 0, 0);
92}
93
94ul {
95 display: flex;
96 flex-direction: row;
97}
98
99li,
100a:hover:not(.btn) {
101 color: red;
102 font-size: 1.2rem;
103}
104
105.reg:hover {
106 color: white;
107}
108.container-main{
109 display: flex;
110 flex-direction: column;
111 align-items: center;
112 justify-content: center;
113 width: 100%;
114 margin-bottom: 10%;
115 height: 100%
116}
117P{
118 font-family: "Montserrat", sans-serif;
119 font-weight: 500;
120 font-size: 4rem;
121 text-decoration: none;
122 color: white;
123 width: 80%;
124 list-style: none;
125 margin-top: -2%;
126}
127
128.glow{
129 text-transform: uppercase;
130 height: auto;
131 text-align: center;
132}
133
134.glow {
135 color: white;
136 animation: neon 3s infinite;
137}
138
139.h1Combined{
140 display: flex;
141 flex-direction: row;
142 align-items: center;
143 justify-content: center;
144 max-width: 100%;
145}
146
147@keyframes neon {
148 0% {
149 text-shadow: -1px -1px 1px var(--shadow-color-light), -1px 1px 1px var(--shadow-color-light), 1px -1px 1px var(--shadow-color-light), 1px 1px 1px var(--shadow-color-light),
150 0 0 3px var(--shadow-color-light), 0 0 10px var(--shadow-color-light), 0 0 20px var(--shadow-color-light),
151 0 0 30px var(--shadow-color), 0 0 40px var(--shadow-color), 0 0 50px var(--shadow-color), 0 0 70px var(--shadow-color), 0 0 100px var(--shadow-color), 0 0 200px var(--shadow-color);
152 }
153 50% {
154 text-shadow: -1px -1px 1px var(--shadow-color-light), -1px 1px 1px var(--shadow-color-light), 1px -1px 1px var(--shadow-color-light), 1px 1px 1px var(--shadow-color-light),
155 0 0 5px var(--shadow-color-light), 0 0 15px var(--shadow-color-light), 0 0 25px var(--shadow-color-light),
156 0 0 40px var(--shadow-color), 0 0 50px var(--shadow-color), 0 0 60px var(--shadow-color), 0 0 80px var(--shadow-color), 0 0 110px var(--shadow-color), 0 0 210px var(--shadow-color);
157 }
158 100% {
159 text-shadow: -1px -1px 1px var(--shadow-color-light), -1px 1px 1px var(--shadow-color-light), 1px -1px 1px var(--shadow-color-light), 1px 1px 1px var(--shadow-color-light),
160 0 0 3px var(--shadow-color-light), 0 0 10px var(--shadow-color-light), 0 0 20px var(--shadow-color-light),
161 0 0 30px var(--shadow-color), 0 0 40px var(--shadow-color), 0 0 50px var(--shadow-color), 0 0 70px var(--shadow-color), 0 0 100px var(--shadow-color), 0 0 200px var(--shadow-color);
162 }
163}
164
165.btn{
166 text-shadow: -1px -1px 10px rgba(255,255,255,0.5);
167 border: 1px solid #b70000;
168 color: white;
169 font-size: 3vw;
170 border:none;
171 background: #af0101;
172 padding: 0.5rem 1.3rem;
173 border-radius: 10%;
174 cursor: pointer;
175 transition: 1s ease;
176 display:block;
177 box-shadow: 3px 2px 10px #d50101,
178 -1px -1px 1px #e60000;
179 font-family: 'Roboto', sans-serif;
180 font-weight: 500;
181 text-decoration: none;
182 transition: infinite 1s ease;
183}
184
185.btn:hover{
186 background-color: #58ACFA;
187 color: white;
188}
189
190.btn2{
191 text-shadow: -1px -1px 10px rgba(255,255,255,0.5);
192 border: 1px solid #b70000;
193 color: white;
194 font-size: 1.5rem;
195 border:none;
196 background: #af0101;
197 padding: 0.5rem 1.3rem;
198 border-radius: 10%;
199 cursor: pointer;
200 transition: 1s ease;
201 display:block;
202 box-shadow: 3px 2px 10px #d50101,
203 -1px -1px 1px #e60000;
204 font-family: 'Roboto', sans-serif;
205 font-weight: 500;
206 text-decoration: none;
207 transition: infinite 1s ease;
208}
209
210.btn2:hover{
211 background-color: #58ACFA;
212 color: white;
213}
214
Note: See TracBrowser for help on using the repository browser.