This repository was archived by the owner on Jul 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
64 lines (64 loc) · 1.62 KB
/
styles.css
File metadata and controls
64 lines (64 loc) · 1.62 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
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');
body{background-color: black; color: white; font-family: 'Roboto', sans-serif;}
.page{
max-width: 600px;
padding: 20px;
padding-top: 10px;
background-color: rgb(20, 20, 20);
margin-right: auto;
margin-left: auto;
border-radius: 10px;
}
a{color: dodgerblue; text-decoration: none;}
summary{cursor: pointer;color: antiquewhite;}
hr{color: white}
label{user-select: none}
.cmdcontainer{
margin-top: 20px;
padding: 5px;
border: rgb(40, 40, 40) 1px solid;
border-radius: 5px;
background-color: rgb(30, 30, 30);
font-family: 'Roboto Mono', monospace;
word-wrap: break-word;
}
.copy{
background-color: rgb(30, 30, 30);
border-radius: 0px 0px 5px 5px;
width: fit-content;
padding: 5px;
margin-left: auto;
margin-right: 10px;
border-left: 1px solid rgb(40, 40, 40);
border-right: 1px solid rgb(40, 40, 40);
border-bottom: 1px solid rgb(40, 40, 40);
margin-top: -1px;
color: antiquewhite;
cursor: pointer;
user-select: none;
}
.copy:active{
background-color: rgb(35, 35, 35);
}
.desc{color: grey;}
input[type=text] {
background-color: black;
color: white;
border: none;
border-radius: 5px;
padding: 5px;
}
input[type=text]:focus{outline: antiquewhite solid 1px;}
.top{
width: 40px;
height: 3px;
background-color: grey;
margin-left: auto;
margin-right: auto;
border-radius: 5px;
}
.oldpage{
opacity: 50%;
transition-duration: 0.1s;
}