-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
181 lines (138 loc) · 2.91 KB
/
style.css
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
*{
margin: 0;
padding: 0;
}
body{
box-sizing: border-box;
font-family: 'Roboto', sans-serif;
background: #1a7951;
background: -webkit-linear-gradient(to right, #0f3443, #1a7951);
background: linear-gradient(to right, #0f3443, #1a7951);
color: rgba(255, 255, 255, 0.712);
text-align: center;
margin-top: 50px;
}
@media only screen and (max-width: 600px){
body{
background: #1a7951;
}
.players{
width: 500px;
margin: 0 auto;
}
}
.players{
margin: 0 auto;
}
/*-------------HEADER-----------*/
/*-------------HEADER-----------*/
/*-------------HEADER-----------*/
h1, h3{
color: rgb(196, 240, 214);
letter-spacing: 10px;
text-transform: uppercase;
}
h3{
color: rgb(77, 158, 111);
}
/*-------------INPUT NAMES-----------*/
/*-------------INPUT NAMES-----------*/
/*-------------INPUT NAMES-----------*/
input[type='text']{
border: none;
outline: none;
border-radius: 30px;
padding: 5px 10px;
background: #f5f5f5;
margin-top: 20px;
}
input[type='text']:focus{
background: rgb(196, 240, 214);
}
/*-------------BUTTON-----------*/
/*-------------BUTTON-----------*/
/*-------------BUTTON-----------*/
button{
display: block;
margin: 30px auto 0 auto;
padding: 10px 20px;
border: none;
outline: none;
cursor: pointer;
border-radius: 50px;
background: rgb(196, 240, 214);
font-weight: 700;
color: black;
text-transform: uppercase;
transition: all .2s;
}
button:hover{
transform: translateY(-2px);
box-shadow: 0 3px 8px #333333;
}
button:active{
transform: translateY(0);
box-shadow: 0 1px 8px #4b4b4b;
}
.btn{
width: min-content;
margin: 0 auto;
}
a{
text-decoration: none;
}
/*-------------TABLE LAYOUT-----------*/
/*-------------TABLE LAYOUT-----------*/
/*-------------TABLE LAYOUT-----------*/
table{
border-collapse: collapse;
margin: 30px auto;
box-shadow: 0 0 20px black;
}
th, td{
position: relative;
padding: 25px;
border: 1px solid rgba(12, 63, 19, 0.623);
text-align: center;
}
tr{
font-weight: 700;
}
th{
text-transform: uppercase;
padding: 10px;
}
/*-------------ICONS-----------*/
/*-------------ICONS-----------*/
/*-------------ICONS-----------*/
.icon {
width: 20px;
height: 20px;
fill: red;
}
.fa-heart{
color: red;
}
/*-------------NUMBER INPUTS-----------*/
/*-------------NUMBER INPUTS-----------*/
/*-------------NUMBER INPUTS-----------*/
input[type='number']{
width: 40px;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
.box{
position: absolute;
top: 2px;
right: 2px;
width: 15px;
height: 15px;
background-color: rgb(56, 204, 56);
cursor: pointer;
}
.boxRed{
background-color: red;
}