-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathestilo.css
111 lines (89 loc) · 1.89 KB
/
estilo.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
body {
padding-left: 10px;
font-family: Verdana;
background-color: rgb(53, 53, 63);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
h1 {
color: #845e9d;
font-size: 50px;
text-shadow: -5px 5px 0 rgb(38, 38, 48);
}
li {
position: relative;
width: 500px;
height: 20px;
margin-left: -40px;
background-color: rgb(116, 72, 116);
padding-top: 5px;
padding-block-end: 5px;
padding-left: 10px;
margin-bottom: 8px;
list-style: none;
border-style: solid;
border-top-color: rgb(151, 104, 151);
border-top-width: 2px;
border-right-color: rgb(151, 104, 151);
border-right-width: 2px;
border-left-width: 0;
border-bottom-width: 0;
border-radius: 8px;
box-shadow: -5px 5px 0 rgb(38, 38, 48);
}
.botao_remover {
position: absolute;
background-color: rgb(151, 104, 151);
right: 5px;
padding-right: 5px;
padding-bottom: 3px;
border-radius: 5px;
border: none;
box-shadow: -4px 3px 0 rgb(99, 59, 99);
}
.botao_remover:hover:active {
background-color: red;
}
#entrada {
position: relative;
height: 60px;
width: 500px;
padding-left: 10px;
padding-top: 10px;
background-color: rgb(116, 72, 116);
border-style: solid;
border-top-color: rgb(151, 104, 151);
border-top-width: 2px;
border-right-color: rgb(151, 104, 151);
border-right-width: 2px;
border-left-width: 0;
border-bottom-width: 0;
box-shadow: -8px 8px 0 rgb(38, 38, 48);
border-radius: 8px;
}
::placeholder {
color: black;
text-align: center;
}
#textoDigitado {
height: 60%;
width: 50%;
border-style: none;
border-radius: 10px;
background-color: rgb(99, 59, 99);
}
#botaoAdicionar {
position: absolute;
color: black;
height: 50%;
width: 30%;
border-style: none;
border-radius: 8px;
right: 10px;
background-color: rgb(151, 104, 151);
}
#botaoAdicionar:hover:active {
background-color: rgb(99, 59, 99);
}