-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
105 lines (90 loc) · 1.88 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
body,
html {
height: 100%;
margin: 0;
display: flex;
align-items: center;
justify-content: center;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.img-cadeado {
width: 200px;
margin-top: 20px;
border: 1px solid #000000;
}
.container {
background-color: #FAFAFA;
border: 1px solid #a4b8a0;
padding: 20px;
max-width: 300px;
width: 100%;
box-sizing: border-box;
}
.exemplo {
background-color: #ffefd5;
border: solid #808080 1px;
margin-bottom: 10px;
text-align: center;
font-family: Arial, Helvetica, sans-serif;
font-size: 18px;
}
h2::first-letter {
color: #00008b;
font-size: 50px;
font-family: Georgia, 'Times New Roman', Times, serif;
}
h2{
text-shadow: 8px 8px 5px;
}
p::first-letter {
color: #000000;
font-size: 50px;
font-family: Georgia, 'Times New Roman', Times, serif;
}
input {
height: 36px;
border: 1px solid #a4b8a0;
border-radius: 3px;
width: 100%;
margin-bottom: 10px;
}
input:focus::placeholder {
color: #070435;
font-weight: bold;
}
button {
background-color: #116b5c;
color: #FAFAFA;
font-size: 18px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
border-radius: 3px;
border: none;
height: 40px;
width: 100%;
}
button.active {
cursor: pointer;
box-shadow: 6px 6px 6px #1a8573;
}
button.active:hover{
background: #008000;
border: 1px solid #000000;
box-shadow: 6px 6px 6px #17b917;
}
#loginButton {
transition: opacity 0.5s ease-in-out;
}
#loginButton.hidden {
opacity: 0;
}
/* Media queries para tornar o estilo responsivo */
@media (max-width: 767px) {
.container {
max-width: 100%;
}
}
@media (max-width: 479px) {
.img-cadeado {
width: 150px;
}
}