-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
executable file
·98 lines (83 loc) · 1.73 KB
/
styles.css
File metadata and controls
executable file
·98 lines (83 loc) · 1.73 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
93
94
95
96
97
body {
font-family: 'Arial', sans-serif;
padding: 10px;
background-color: #f9f9f9;
color: #333;
min-width: 400px;
}
h1 {
font-size: 18px;
color: #333;
}
form {
margin-bottom: 20px;
}
input[type="text"] {
padding: 8px;
margin-right: 5px;
border: 1px solid #ddd;
border-radius: 4px;
box-sizing: border-box;
}
button {
background-color: #4285f4;
margin: 5px;
color: white;
border: none;
padding: 10px 15px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 14px;
border-radius: 4px;
cursor: pointer;
}
button:hover {
background-color: #357ae8;
}
#linksList {
list-style-type: none;
padding: 8px;
}
#linksList div {
margin-bottom: 10px;
background-color: #fff;
border: 1px solid #ddd;
padding: 8px;
border-radius: 4px;
display: flex;
justify-content: space-between;
align-items: center;
}
.key {
font-weight: bold;
color: #4285f4; /* A distinct color for the key */
margin-right: 5px;
text-decoration: none; /* Removes underline from links */
}
.key:hover {
text-decoration: underline; /* Adds underline on hover for better UX */
}
#linksList button {
padding: 5px 10px;
margin-left: 10px;
font-size: 12px;
}
#logo {
max-width: 100px; /* Adjust as needed */
height: auto;
display: block;
margin: 0 auto 10px; /* Center the logo with some margin at the bottom */
}
.header {
text-align: center; /* Center the logo and the title */
}
.download-link {
font-size: 0.6em; /* Smaller text size */
margin-left: 10px; /* Space from the header */
text-decoration: none; /* No underline */
color: #4285f4; /* Link color, adjust as needed */
}
.download-link:hover {
text-decoration: underline; /* Underline on hover for better UX */
}