-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
125 lines (107 loc) · 2.02 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
body {
background-color: black;
font-family: 'Macondo', cursive;
}
header {
background-image: url("https://sm.ign.com/ign_br/screenshot/default/giphy-2_99ec.gif");
display: flex;
align-items: center;
justify-content: center;
color: #CBFBFB;
margin: -8px;
margin-bottom: 10px;
white-space: nowrap;
overflow: hidden;
}
.cor1 {
color: #891AA5;
}
.cor2 {
color: #F3F98B;
}
.main {
background-image: url("https://i.ytimg.com/vi/41vuqCTd2-U/maxresdefault.jpg");
text-align: center;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
border: 1px solid green;
border-radius: 1em;
background-color: rgba(137, 70, 166, 0.2);
flex-wrap: wrap;
color: rgb(0, 223, 0);
}
.options {
color: blue;
margin-bottom: 30px;
}
.toEncodeDiv {
margin: 15px;
}
.entrada {
border-radius: 5px;
width: 300px;
height: 150px;
margin-top: 10px;
}
.deslocamento {
border-radius: 5px;
width: 60px;
text-align: center;
margin-top: 10px;
}
#chaveCifraDiv {
display: none;
}
.toDecodeDiv {
margin-top: 30px;
}
textarea {
background-color: black;
color: rgb(0, 180, 0);
border: 1px solid green;
}
input {
background-color: black;
color: rgb(0, 180, 0);
border: 1px solid green;
}
button {
background-color: #891AA5;
border-radius: 8px;
border: 1px green solid;
color: #CBFBFB;
margin: 10px;
width: 40%;
transition: 0.4s;
}
button:hover {
background-color: rgb(197, 41, 236)
}
button:active {
transform: translateY(5px);
}
footer {
background-image: url("https://sm.ign.com/ign_br/screenshot/default/giphy-2_99ec.gif");
display: flex;
align-items: center;
justify-content: center;
color: #CBFBFB;
margin: -8px;
margin-top: 10px;
}
.animation {
animation: animate 2.2s linear infinite;
}
@keyframes animate {
0% {
opacity: 1;
}
50% {
opacity: 0.1;
}
100% {
opacity: 1;
}
}