-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
118 lines (103 loc) · 2.53 KB
/
styles.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/* styles.css */
body {
font-family: 'Arial', sans-serif;
background-color: #24292e; /* Dark gray background */
margin: 0;
padding: 0;
}
.container {
width: 300px; /* Slightly wider for readability */
height: auto;
margin: 30px auto;
padding: 20px;
background-color: #2f363d; /* Slightly lighter background */
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.logo {
margin-bottom: 20px;
}
.logo img {
width: 60px;
height: auto;
}
.title {
color: #d1d5da;
margin-bottom: 10px;
}
.content p {
color: #c9d1d9;
margin-bottom: 12px;
line-height: 1.5; /* Improved readability */
font-size: 0.9em; /* Slightly smaller font size */
}
.key {
background-color: #3a3f45; /* Soft gray background for keys */
color: #c9d1d9; /* Light gray text */
padding: 3px 6px; /* Adjusted padding for better button effect */
border-radius: 4px; /* Rounded corners */
font-size: 1.05em; /* Slightly smaller font to mimic keycaps */
font-weight: bold;
margin: 0; /* Removed margin to bring keys closer together */
display: inline-block; /* Ensures keys are treated as blocks */
}
.plus {
color: #c9d1d9; /* Match the key text color */
font-size: 1.05em; /* Match the key size */
margin: 0 2px; /* Add spacing between keys */
}
.keybind {
text-align: center; /* Center-align the keybind */
margin: 10px 0; /* Add margin for spacing */
}
.chrome-url {
background-color: #17458a;
color: #ffffffd0;
padding: 4px 8px;
border-radius: 4px;
display: inline-block;
margin: 0;
}
.instruction-text {
color: #e1e4e8;
font-size: 0.9em;
margin-top: 10px;
line-height: 1.4;
text-align: center;
}
.subtle-highlight {
background-color: #3a3f45; /* Softer gray background */
color: #c9d1d9; /* Light gray text */
padding: 1px 4px; /* Reduced padding */
border-radius: 3px; /* Small border radius */
font-weight: 500; /* Medium weight for slight emphasis */
}
.supported-sites {
color: #c9d1d9;
font-size: 0.9em;
margin-top: 10px;
text-align: center;
}
.supported-sites a {
color: #4493f8; /* Blue color for links */
text-decoration: none;
font-weight: bold;
}
.supported-sites a:hover {
text-decoration: underline;
}
.footer {
text-align: center;
color: #adbac7;
margin-top: 20px;
}
.footer a {
color: #4493f8;
text-decoration: none;
}
.footer a:hover {
text-decoration: underline;
}