-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfuncoes.css
More file actions
114 lines (96 loc) · 1.71 KB
/
funcoes.css
File metadata and controls
114 lines (96 loc) · 1.71 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
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300&display=swap");
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
font-family: Poppins, sans-serif;
}
body {
background-color: #eaeaea;
transition: 1s all;
}
.container {
background-color: #efefef;
display: block;
text-align: center;
width: 300px;
height: 243px;
margin: 0 auto;
margin-top: 300px;
border: 1px solid black;
border-radius: 10px;
box-shadow: 0 0 10px 1px;
padding-bottom: -20px;
}
h5 {
font-size: 1rem;
border-bottom: 1px solid black;
width: 75%;
text-align: center;
margin: 0 auto;
}
input {
border: 0.1px solid black;
border-radius: 5px;
padding: 2px;
margin-bottom: 5px;
box-shadow: 0px 0px 2px 1px black;
}
h5 + input {
margin-top: 10px;
}
.erro {
border: 1px solid red;
}
.container-message {
color: black;
width: 100%;
display: block;
margin: 0 auto;
}
.message {
background-color: #ffb0b0b9;
width: 15%;
text-align: center;
margin: 0 auto;
border-bottom-right-radius: 20px;
border-bottom-left-radius: 20px;
}
button {
padding: 6px;
background-color: darkgray;
border: 1px solid #eaeaea;
border-radius: 3px;
}
::placeholder.need {
color: red;
}
.need::placeholder {
color: red;
}
.error {
background-color: #eeeeee;
}
.error h5 {
color: red;
}
img#dark {
width: 50px;
height: 50px;
border-radius: 50%;
position: relative;
transition: 0.5s all;
background-color: gray;
}
img:hover#dark {
position: relative;
transform: translateY(2px);
filter: drop-shadow(0 0 5px 5px);
box-shadow: 0px 0px 10px black;
cursor: pointer;
}
.dark {
background-color: #333;
}