-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.css
70 lines (58 loc) · 1.45 KB
/
popup.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
body {
width: 250px;
height: 300px;
background-color: #D9D9D9;
padding: 0;
margin: 0;
border: none;
font-family: Arial, sans-serif;
}
h1 {
text-align: center;
}
#form {
display: flex; /* Ermöglicht das Nebeneinanderstellen von input und button */
justify-content: center; /* Zentriert die Elemente horizontal */
margin: 0 auto;
}
#site {
margin-right: 10px; /* Fügt einen rechten Rand zum Eingabefeld hinzu, um etwas Platz zwischen dem Eingabefeld und dem Button zu schaffen */
}
button {
border-radius: 0; /* Entfernt die runden Ecken */
border: none; /* Entfernt den Rand */
background-color: #ffffff;
}
input {
display: block;
color: #000 ;
text-align: center;
border: none; /* Entfernt den Rand */
background-color: white; /* Setzt die Hintergrundfarbe auf Weiß */
}
.line {
width: 90%; /* Breite der Linie */
border: 0;
border-top: 2px solid #000; /* Farbe und Dicke der Linie */
margin: 20px auto; /* Zentriert die Linie und fügt oben und unten einen Abstand von 20px hinzu */
}
/* popup.css */
#table-container {
display: flex;
justify-content: center;
}
#table {
text-align: center;
width: 20%; /* Ändere die Breite der Tabelle nach Bedarf */
font-weight: bold; /* Setze die Schriftstärke auf fett */
list-style-type: disc; /* Verwende Punkte als Aufzählungszeichen */
}
#table.active {
display: table;
}
#table tr button {
display: none;
}
#table tr:hover button {
display: inline-block;
}