-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
85 lines (74 loc) · 1.7 KB
/
main.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
.bg__codigo {
background-color: #6BD1FF;
border-radius: 8px;
position: absolute;
top: 128px;
left: 23%;
height: 366px;
width: 752px;
}
.codigo__estilo {
background-image: url(./mac_buttons.svg);
height: 12px;
width: 52px;
position: absolute;
top: 48px;
left: 48px;
z-index: 1;
}
.input__codigo {
background: #141414;
border: none;
border-radius: 8px;
color: #fff;
display: inline-block;
height: 234px;
margin: 32px;
overflow: auto; /* Exibe barras de rolagem apenas se necessário */
padding: 52px 16px 16px 16px;
width: 87%;
}
pre {
white-space: pre-wrap; /* Since CSS 2.1 */
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.codigo__button {
background: rgba(80, 129, 251, 0.08);
border: none;
border-radius: 8px;
color: #fff;
font-family: Inter;
position: absolute;
top: 526px;
left: 23%;
height: 56px;
width: 752px;
}
.codigo__button:hover {
background: rgba(80, 129, 251, 0.16);
cursor: pointer;
}
.codigo__button:active {
border: 4px solid rgba(80, 129, 251, 0.24);
}
@media screen and (max-width: 1320px) {
.bg__codigo {
display: flex;
width: 90%;
left: 5%;
}
.input__codigo {
width: 95%;
}
.codigo__button {
width: 90%;
left: 5%;
}
.container__main {
display: flex;
justify-content: center;
}
}