-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
71 lines (63 loc) · 1.33 KB
/
style.css
File metadata and controls
71 lines (63 loc) · 1.33 KB
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
@charset "UTF-8";
* {
border: 0px;
margin: 0px;
padding: 0px;
font-family: 'Times New Roman', Times, serif;
font-size: large;
/* box-sizing: border-box; */
}
section {
display: flex;
/* justify-content: flex-start; */
/* align-items: stretch; */
width: 100%;
}
#istage {
display: flex;
width: 100%;
min-height: 100vh;
/* min-height: fill-available; */
min-height: -webkit-fill-available;
/*webkit impede de dar scroll para baixo*/
background-color: aqua;
border: 1px solid black;
position: absolute;
overflow: hidden;
}
.layout {
display: flex;
flex-direction: column;
justify-content: center;
/* align-items: flex-start; */
width: 100%;
background-color: lightgray;
border: 2px solid black;
border-radius: 10px;
padding: 5px;
margin: 5px;
/* height: 15vh; */
}
input,
.num {
width: 200px;
height: 30px;
border: 1px solid black;
background-color: white;
padding: 5px;
border-radius: 10px;
}
button {
width: 200px;
justify-content: center;
margin: auto;
margin-top: 8px;
padding: 5px;
border: 1px solid black;
border-radius: 10px;
cursor: pointer;
}
.bola {
position: absolute;
border-radius: 100px;
}