-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
77 lines (64 loc) · 1.22 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
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Roboto', sans-serif;
}
body {
display: flex;
justify-content: center;
align-items: center;
/* min-height: 100vh; */
background-color: #222327;
}
.container {
width: 90%;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
/* background-color: #121214; */
/* padding: 40px; */
border-radius: 20px;
}
input {
/* width: 50%; */
height: 25px;
}
.length {
width: 100%;
}
.name {
width: 100%;
}
table { border-collapse: collapse;}
th, td { border: solid 1px; padding: 0 }
td:first-child { width: 100px }
td:first-child + td { width: 300px }
td:first-child + td + td { width: 100px }
select {
/* appearance: none; */
/* -webkit-appearance: none; */
-moz-appearance: none;
height: 25px;
}
/* section {
height: 30px;
} */
/* .container {
display: flex;
flex-direction: row;
}
.entity {
width: 50%;
height: 100vh;
background-color: green;
text-align: right;
color: white;
}
.result {
width: 50%;
color: green;
height: 100vh;
} */