-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
91 lines (77 loc) · 1.53 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
@import url("https://fonts.googleapis.com/css2?family=Potta+One&family=Roboto:wght@300&display=swap");
* {
margin: 0;
padding: 0;
}
nav {
display: flex;
align-items: center;
justify-content: center;
background-color: black;
color: white;
height: 60px;
user-select: none;
}
.content {
font-family: 'Potta One', cursive;
}
.container {
width: 60vw;
margin: auto;
padding: 34px 0;
font-family: 'Roboto', sans-serif;
}
.logo {
padding: 0 5px;
}
.logo img {
width: 34px;
padding: 0 5px;
}
.toolbar-item button {
cursor: pointer !important;
color: white !important;
border: 1px solid white !important;
border-radius: 15px !important;
padding: 5px 14px !important;
text-align: center !important;
}
.toolbar-item span {
display: none !important;
}
h1 {
margin-top: 10px;
margin-bottom: 10px;
}
p {
margin-top: 10px;
margin-bottom: 10px;
}
pre {
outline: none;
}
.tool-container {
width: 50px;
margin:50px;
padding: 10px;
font-family: 'Roboto', sans-serif;
border: 2px solid black;
color: white;
background-color: black;
border-radius: 10px;
}
footer {
display: flex;
align-items: center;
justify-content: center;
background-color: black;
color: white;
height: 60px;
user-select: none;
font-family: 'Potta One', cursive;
font: bold;
}
a {
color: rgb(173, 166, 166);
text-decoration: none;
}