-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
103 lines (91 loc) · 1.46 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
body {
background-color: #000;
color: #fff;
font-family: monospace;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.terminal {
display: inline-block;
background-color: #222;
padding: 20px;
border-radius: 5px;
}
.output {
margin: 10px 0;
}
input[type="text"] {
padding: 5px;
width: 150px;
margin-top: 10px;
}
button {
padding: 5px 10px;
background-color: #444;
color: #fff;
border: none;
cursor: pointer;
margin-top: 10px;
}
.title {
font-size: 24px;
font-weight: bold;
color: #ff9999;
}
.message-output {
font-weight: bold;
color: #fff177;
}
/* Estilos para o modal */
.modal {
display: none;
position: fixed;
z-index: 1;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0, 0, 0, 0.5);
}
.modal-content {
background-color: #222;
margin: 20% auto;
padding: 20px;
border-radius: 5px;
width: 300px;
position: relative;
}
.close {
position: absolute;
top: 10px;
right: 20px;
color: #fff;
font-size: 28px;
font-weight: bold;
cursor: pointer;
}
input[type="text"],
button {
padding: 10px;
width: inherit;
font-size: 16px;
border: none;
border-radius: 5px;
background-color: #444;
color: #fff;
margin-top: 10px;
}
input[type="text"]:focus,
button:focus {
outline: none;
box-shadow: 0 0 5px #fff;
}
input[type="text"]:disabled,
button:disabled {
opacity: 0.5;
cursor: not-allowed;
}