-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
113 lines (89 loc) · 1.6 KB
/
index.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
@import url('https://fonts.googleapis.com/css2?family=Kalam:wght@300&display=swap');
:root {
--colorYellowBtn: #DA9D31;
--colorPrincipal: #DA9D31;
--white: #fff;
--colorSecond: #734444;
}
body {
background-color: var(--colorPrincipal) !important;
}
#containerSup {
height: 70px;
background-color: var(--colorSecond);
border-bottom: 10px solid var(--white);
margin-bottom: 10px;
}
.text-principalLogin {
color: var(--colorSecond);
}
.border-login {
border: 1px solid var(--colorSecond);
border-radius: 5px;
}
.btn-login {
background-color: transparent;
}
.btn-login:hover {
background-color: var(--colorSecond);
color: #fff;
}
.btn-login:active {
background-color: #503030;
color: #fff;
}
.verSenha{
display:inline;
height: 20px;
}
#entrar{
width:90%
}
.msgSanji {
font-family: 'Kalam', cursive;
font-size: 1.3rem;
line-height: .6rem;
color: #603939;
}
.containerMsgSanji{
display: none;
}
@media (min-width: 900px) {
.containerMsgSanji{
display: block;
}
#msg1 {
position: absolute;
top: 250px;
left: 5vw;
transform: rotate(-10deg);
}
#msg2 {
position: absolute;
top: 450px;
left: 15vw;
text-align: center;
transform: rotate(5deg);
}
#msg3 {
position: absolute;
top: 200px;
right: 10vw;
text-align: center;
transform: rotate(5deg);
}
#msg4 {
position: absolute;
top: 85vh;
left: 10vw;
text-align: center;
transform: rotate(-5deg);
}
#msg5 {
position: absolute;
top: 600px;
right: 20vw;
text-align: center;
transform: rotate(-10deg);
}
}