-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtanque.css
More file actions
53 lines (51 loc) · 1.13 KB
/
Copy pathtanque.css
File metadata and controls
53 lines (51 loc) · 1.13 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
.container{
overflow-y: hidden;
overflow-x: hidden;
width: 100%;
}
.titulo-tanque{
/* border: 1px solid white; */
}
.input-tanque{
border-radius: 3rem;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
border: 1px solid white;
width: 80%;
margin: 1rem;
padding: 1rem;
background: linear-gradient(to right, rgb(26, 26, 26), rgb(98, 98, 245));
}
.input-tanque input{
margin: 1rem;
outline: none;
border-radius: 3rem;
padding: 1rem;
width: 100%;
max-width: 60%;
border: none;
}
.input-tanque input::placeholder{
color: black;
font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.input-tanque button{
margin: 1rem;
border: 4px solid white;
border-color: white(0, 0, 0);
border-radius: 3rem;
padding: 1rem;
color: white;
overflow: hidden;
max-width: 40%;
display: flex;
align-items: center;
justify-content: center;
background-color: transparent;
}
.input-tanque button:hover{
color: black;
background-color: white;
}