-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
130 lines (120 loc) · 2.38 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
@font-face {
font-family: Assistant;
src: url("ressources/Assistant.ttf");
}
@font-face {
font-family: Manrope;
src: url("ressources/Manrope.ttf");
}
*{
/* https://github.com/enkia/tokyo-night-vscode-theme */
--red : #f7768e;
--orange : #ff9e64;
--yellow : #e0af68;
--green : #9ece6a;
--greenblue : #73daca;
--lighcyan : #b4f9f8;
--cyan : #2ac3de;
--blue : #7dcfff;
--darkblue : #7aa2f7;
--magenta : #bb9af7;
--pinkwhite : #c0caf5;
--greywhite : #a9b1d6;
--grey : #9aa5ce;
--white : #cfc9c2;
--dark : #565f89;
--darker : #414868;
--black : #24283b;
--darkblack : #1a1b26;
font-family: "Assistant", Arial, Helvetica, sans-serif;
color: var(--white);
}
html{
background-color: var(--darkblack);
}
body{
margin: calc( max(0%, 15% - 75px) + 15px);
margin-top:2%;
}
canvas{
width: 800px;
height: 800px;
border: 1px solid var(--dark);
}
input, select{
border: 1px solid var(--greywhite);
margin: 5px;
}
input, select, button, textarea{
background-color: var(--darkblack);
color: var(--white);
padding: 0px 5px 0px 5px;
}
textarea{
width:100%;
height: 170px;
font-size: 10pt;
}
option{
color:var(--white);
}
#profile_name, .main_title{
color: var(--white);
font-weight: normal;
font-size: 30pt;
font-family: "Manrope", Arial, Helvetica, sans-serif;
}
.subtitle{
color: var(--greenblue);
font-size: 20pt;
line-height: 20px;
margin-top: 15px;
margin-bottom: 5px;
}
.explanations p{
margin-top: 10px;
padding: 0px 15px 0px 15px;
}
#main_content{
display:flex;
justify-content: space-evenly;
flex-wrap: wrap;
}
#parameters{
width: 550px;
}
#parameters input{
display:block;
}
.panel{
background-color: var(--black);
border: 1px solid var(--dark);
}
.printedMatrix input{
width:50px;
}
.tabs_list{
display: flex;
flex-wrap: wrap;
justify-content: space-around;
align-items: center;
border-bottom: 1px solid var(--dark);
margin-bottom: 8px;
}
.tabs_list > div{
padding:8px;
}
.tabs_list .selectedTab{
background-color: var(--dark);
}
.tabs_content > div{
display:none;
padding: 0px 12px 0px 12px;
width: 92%;
}
#mainTab_content{
padding: 5px 0px 15px 0px;
}
#debug_panel{
padding:10px;
}