-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhdpi-styles.css
91 lines (78 loc) · 1.8 KB
/
hdpi-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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/* THIS IS FOR MOBILE DEVICES */
@media screen and (max-width:576px) {
textarea{
font-size: 1.5rem;
}
button{
font-size: 1.0rem;
}
.flow-container{
display: flex;
flex-direction: column;
justify-content: space-evenly;
align-items:center;
margin: 10%;
margin-top: 20%;
}
.main-container{
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-evenly;
align-content: space-evenly;
gap: 1.0rem;
}
.entries-container{
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
gap: 2%;
}
.history-container{
padding-top: 2%;
padding-bottom: 2%;
padding-left: 5%;
padding-right: 5%;
width: 100%;
height: fit-content;
margin-bottom: 25%;
}
.btn-encrypt{
background-color: var(--primary-color);
border-top-left-radius: 1.0rem;
border-bottom-left-radius: 1.0rem;
height: 100%;
width: 50%;
transition: 0.5s;
}
.btn-encrypt:hover{
background-color: rgb(76, 74, 74);
color: var(--surface-color);
cursor: pointer;
}
.btn-decrypt{
color: white;
background-color: grey;
border-top-right-radius: 1.0rem;
border-bottom-right-radius: 1.0rem;
height: 100%;
width: 50%;
transition: 0.5s;
}
.btn-decrypt:hover{
background-color: rgb(76, 74, 74);
color: var(--surface-color);
cursor: pointer;
}
.help-view.visible{
width: 100%;
height: 100%;
}
.help-view.visible h3{
margin: 0%;
}
.help-view.visible p{
margin: 4%;
}
}