-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
92 lines (80 loc) · 1.32 KB
/
Copy pathstyle.css
File metadata and controls
92 lines (80 loc) · 1.32 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
* {
margin: 0;
padding: 0;
}
html {
font-size: 15px;
}
body {
font-family: sans-serif;
height: 100vh;
width: 100vw;
}
.parent {
height: 600px;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.main {
height: 70%;
width: 70%;
display: flex;
gap: 1rem;
align-items: center;
flex-direction: column;
border-radius: 12px;
box-shadow: 0.5rem 0.5rem 1rem gray;
overflow-y: auto;
}
.tag {
display: flex;
justify-content: space-between;
align-items: center;
height: 100px;
width: 80%;
}
.txt-div {
width: 80%;
color: gray;
}
.btn {
width: 100px;
height: 30px;
border-radius: 10px;
border: none;
color: whitesmoke;
background: gray;
cursor: pointer;
}
.title {
font-family: "Orbitron";
font-size: 1.8rem;
color: rgb(63, 63, 63);
}
.saver {
width: 90%;
}
.snippets {
display: grid;
gap: 0.5rem;
}
.snippet-item {
background: gainsboro;
list-style: none;
padding: 0.5rem 1rem;
margin-inline: 1.5rem;
display: flex;
justify-content: space-between;
align-items: center;
border-radius: 5px;
}
.btn-del {
width: 100px;
height: 30px;
border-radius: 12px;
border: none;
color: black;
background: rgba(140, 140, 140, 0.363);
}