-
Notifications
You must be signed in to change notification settings - Fork 0
/
global.styles.css
70 lines (61 loc) · 1.35 KB
/
global.styles.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
.body {
font-family: "Roboto", sans-serif;
}
.characters {
margin: 0 auto;
max-width: 100%;
font-family: "Roboto", sans-serif;
width: fit-content;
cursor: text;
display: table;
}
.character {
width: 60px;
height: 50px;
line-height: 50px;
font-size: 36px;
background-color: rgba(255, 255, 255, 0.2);
border: 1px solid transparent;
border-radius: 8px;
color: rgb(7, 7, 7);
margin-left: 8px;
border: 2px solid rgb(175, 175, 175);
}
.character--inactive {
background-color: rgba(255, 255, 255, 0.1);
box-shadow: none;
}
.character--selected {
width: 60px;
line-height: 50px;
font-size: 36px;
background-color: rgba(255, 255, 255, 0.5);
border: 1px solid transparent;
border-radius: 8px;
color: rgb(7, 7, 7);
margin-left: 8px;
border: 2px solid rgb(0, 0, 0);
}
div .user-input-field input {
width: 43px !important;
height: 43px !important;
background: #ececec;
border-radius: 3px;
margin-bottom: 10px;
margin-right: 10px !important;
}
div .encryption-inp-cn {
width: calc(100% - 70px);
}
div .grid-row {
margin: 0 !important;
justify-content: center !important;
}
div .svg-black {
filter: invert(0%) sepia(15%) saturate(13%) hue-rotate(351deg)
brightness(105%) contrast(88%);
}
div .svg-white {
filter: invert(15%) sepia(31%) saturate(13%) hue-rotate(17deg)
brightness(100%) contrast(101%);
}