-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprogram.css
98 lines (72 loc) · 1.48 KB
/
program.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
@import url('https://fonts.googleapis.com/css2?family=Maven+Pro&display=swap');
body{
margin: 0%;
padding: 0;
text-align: center;
color: rgb(24, 24, 26);
box-sizing: border-box;
font-family: 'Maven Pro', sans-serif;
overflow: auto;
}
div{
padding: 0.3em;
}
.mainContainer{
display: flex;
flex-direction: column;
width: 70%;
margin: 0 auto 0 auto;
margin-bottom: 0.6em;
}
.mainContainer > div{
border: 2px dashed rgb(47, 38, 173);
border-radius: 10px;
padding: 10px;
width: 100%;
margin: 0 auto 0 auto;
margin-top: 0.6em;
margin-bottom: 0.6em;
/*min-height: 11em; */
}
input /*, canvas */ {
border: 2px solid rgba(47, 38, 173, 0.5);
border-radius: 10px;
text-align: center;
}
canvas, #vizSignalA{
margin: 0 auto 0 auto;
width: 50%;
height: 50%;
/* border: 1px solid rebeccapurple; */
}
textarea{
border: none;
text-align: center;
resize: none;
width: 100%;
height: 12em;
}
button{
width: 7em;
border: none;
padding: 0.6em;
color: rgb(47, 38, 173);
background-color: white;
border: 1px solid rgba(47, 38, 173);
border-radius: 10px;
}
.jezikUL{
padding: 0;
width: 4em;
margin: 0 auto 0 auto;
border: 1px dashed black;
border-radius: 10px;
display: flex;
flex-direction: row;
list-style: none;
margin: 0 auto 0 auto;
}
.jezikUL li{
/* border: 1px solid black; */
margin: 0 auto 0 auto;
}