-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnomenclature.css
More file actions
112 lines (101 loc) · 2.24 KB
/
nomenclature.css
File metadata and controls
112 lines (101 loc) · 2.24 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
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
.prompt_container.nomen {
overflow: auto;
display: block;
width: 100%;
/*max-height: calc(22% - 10px);*/
padding-top: 10px;
-webkit-text-size-adjust: none;
-ms-text-size-adjust: none;
font-size: 18px;
line-height: 24px;
}
.response_container.nomen {
overflow: auto;
display: table;
width: 100%;
height: calc(40% - 30px);
cursor: pointer;
overflow-x: hidden;
margin-top: 15px;
margin-bottom: 15px;
border-radius: 30px;
background-color: rgba(255,255,255,0.2);
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}
.response_container.nomen:before {
content: "";
display: inline-block;
vertical-align: middle;
height: 100%;
}
.response_init.nomen {
display:table-cell;
color: white;
vertical-align: middle;
font-size: 20px;
font-weight: 900;
padding: 20px;
-webkit-text-size-adjust: none;
-ms-text-size-adjust: none;
}
.tiles_container.nomen {
display: block;
margin: 0 auto;
/*max-width: calc(50px * 7);*/
max-height: calc(30% - 30px);
padding-top: 0px;
padding-bottom: 15px;
}
.tile.nomen {
display: inline-block;
cursor: pointer;
padding: 10px;
border-radius: 15px;
min-width: 20px;
min-height: 20px;
margin: 2px;
font-size: 20px;
font-weight: 900;
-webkit-text-size-adjust: none;
-ms-text-size-adjust: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}
.active_tile {
background-color: rgba(255,255,255,0.5);
color: #444;
}
.inactive_tile {
background-color: rgba(255,255,255,0.2);
color: rgba(20,20,20,0.2);
}
.name_input.nomen {
margin: 10px;
padding: 10px;
min-height: 10%;
width: calc(90% - 20px);
border: none;
outline: none;
border-radius: 15px;
background-color: rgba(255,255,255,0.5);
font-size: 20px;
text-align: center;
color: #444;
-moz-appearance: none;
-webkit-appearance: none;
}
.std_button.nomen {
/*position: relative;
left: calc(50% - 20px);*/
margin:2px;
font-size: 20px;
min-height: 20px;
padding: 10px;
}
/*.response_tile.nomen {
margin-top: calc(5% - 15px);
margin-bottom: calc(5% - 15px);
}*/