-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
95 lines (87 loc) · 1.36 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
body{
background-color: black;
color: white;
font-size: 18px;
font-family: "San Francisco", Helvetica, sans-serif;
}
#all{
display: flex;
max-width: 890px;
margin: auto;
flex-wrap: wrap;
justify-content: space-evenly;
}
.stdWidth{
width: 400px;
margin: 5px;
flex-grow: 1;
}
@media (min-width: 440px) and (min-height: 500px){
.stdWidth{
margin: 15px;
}
}
#key-etc{
display: flex;
border-radius: 20px;
padding: 0px;
background-color: #121617;
max-width: 420px;
}
#zero-height{
margin-top: 0px;
margin-bottom: 0px;
height: 0;
}
#key{
width: 100px;
align-self: stretch;
flex-shrink: 0.1;
}
#gen-and-copy{
display: inline-flex;
flex-wrap: wrap;
justify-content: space-evenly;
}
.fillAllFreeSpace{
flex-grow: 1;
flex-shrink: 1;
}
.buttons {
margin: 15px;
}
.buttons:active{
opacity: 0.5;
}
.green{
color: #34C759;
}
.blue{
color: #0a84FF;
}
.right{
align-self: flex-end;
}
.rect{
border-radius: 20px;
padding: 15px;
background-color: #202020;
}
.big{
min-height: 200px;
height: 75vh;
word-break: break-all;
padding: 0px;
display: flex;
flex-direction: column;
}
input{
color: white;
border-width: 0px;
font: inherit;
}
textarea{
color: white;
border-width: 0px;
font: inherit;
}