-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
98 lines (97 loc) · 1.55 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
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,700;1,300&family=Poppins:wght@300;400;600&display=swap');
nav {
display: flex;
justify-content: space-between;
background-color: #000000;
padding: 10px;
color: #ffffff;
}
* {
padding: 0px;
margin: 0px;
font-family: 'Noto Sans', sans-serif;
font-family: 'Poppins', sans-serif;
}
.logo {
font-size: 25px;
font-weight: 600;
}
.logo:hover {
color: #ffffff;
}
ul {
display: flex;
margin: 0px 23px;
}
ul,
li,
a {
text-decoration: none;
list-style: none;
color: #ffffff;
margin: 0 10px;
}
ul li:hover {
color: #ffffff;
cursor: pointer;
}
table,
td,
tr,
th {
border: 1px solid black;
border-collapse: collapse;
padding: 1px 10px;
}
td {
font-size: 15px;
}
.container {
max-width: 80vw;
margin: 23px auto;
}
.inputContainer {
padding: 10px 0px;
}
h1,
h2,
h3 {
margin: 20 0px;
}
button {
padding: 9px 17px;
background-color: black;
color: white;
font-weight: bold;
border: 0px;
border-radius: 10px;
margin: 10px 0px;
}
.btn-delete {
padding: 9px 17px;
background-color: black;
color: white;
font-weight: bold;
border: 0px;
border-radius: 10px;
}
.btn-delete:hover {
background-color: red;
}
button:hover {
background-color: green;
}
.encryption-input {
background-color: black;
color: black;
height: 10px;
}
img {
cursor: pointer;
position: relative;
bottom: 8px;
}
.copied-status{
font-size: 15px;
font-weight: 400;
}