-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
128 lines (107 loc) · 2.2 KB
/
style.css
File metadata and controls
128 lines (107 loc) · 2.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
body{
margin-left:auto;
margin-right:auto;
margin:auto;
background-image:URL(poza\ fundal\ stadion.jpg);
background-size:cover;
}
.meniu a{
float: left;
margin-top: 0.5%;
padding-bottom:0.5%;
color: white;
text-decoration: none;
font-size: 2rem;
width: 25%;
text-align: center;
transition: transform 0.5s;
}
.meniu a:hover {
background-color:#b3b3b3;
color:white;
transform:translateY(-0.3rem)
}
h1{
background-color:#1b2979;
color:white;
text-align:center;
text-decoration: solid;
width: 100%;
margin-top:0px;
margin-bottom: 0rem;
animation-name: example;
animation-duration: 15s;
animation-iteration-count: infinite;
}
.jucator{
display:block;
width: 30%;
margin-top: 2%;
transition: all 1s ease;
color:transparent;
}
.flex-container {
display: flex;
justify-content: flex-start; /* sa ii centrez */
align-items: center;
margin: 2% 5% 10% 20%;
width: 85%;
gap: 5px;
}
.jucator1{
display:block;
width: 55%;
margin-left: 2%;
margin-top: 2%;
transition: all 1s ease;
color:transparent;
}
.jucator.zoom {
width: 50%; /* Mărim div-ul la 90% din lățimea părintelui */
color:black;
}
.jucator1.zoom {
width: 40%; /* Mărim div-ul la 90% din lățimea părintelui */
color:black;
}
img{
width:100%;
}
.jucator1.invizibil{
opacity:0.7;
}
.jucator.invizibil{
opacity:0.7;
}
@media screen and (min-width: 768px) {
.meniu a{
float: left;
color: white;
text-decoration: none;
font-size: 2rem;
width: 25%;
text-align: center;
}
.meniu {
margin:0;
overflow:hidden;
background-color:black;
animation-name: example;
animation-duration: 1s;
animation-iteration-count: infinite;
}
}
.meniu {
margin:0;
background-color:#1b2979;
}
@keyframes miscare{
0% {transform:translateX(-20px);
}
100% {transform:translateX(20px )}
}
.jucator h2,
.jucator1 h2 {
text-align: center;
margin: 10px 0; /* sa centrez Siu */
}