-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
68 lines (59 loc) · 1.26 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
::before ::after {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
background-color: rgb(240, 238, 238);
font-size: 20px;
font-family: 'Orbitron', sans-serif;
cursor:pointer;
}
header, main {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
flex-wrap: wrap;
margin: 40px;
}
.input, .outcome {
border: 3px solid white;
border-radius: 6px;
background-color: black;
color: white;
width: 300px;
height: 100px;
font-size: 15px;
font-family: 'Orbitron', sans-serif;
cursor:pointer;
}
.selecao{
border: 3px solid black;
margin: 10px 5px;
border-radius: 5px;
font-size: 20px;
background-color: black;
color: white;
font-family: 'Orbitron', sans-serif;
cursor:pointer;
}
.passos {
border: 3px solid black;
background-color: black;
color: white;
font-family: 'Orbitron', sans-serif;
font-size: 20px;
margin-left: 50px;
}
.botao {
background-color: rgb(240, 238, 238);
color: rgb(0, 0, 0);
font-size: 15px;
font-weight: bold;
border: 5px solid rgb(240, 238, 238);
font-family: 'Orbitron', sans-serif;
text-transform: uppercase;
cursor:pointer;
padding: 10px;
}