Created
July 18, 2024 22:51
-
-
Save calebcauthon/74f2a1f28a6d52b78dc1f66ccdb285e3 to your computer and use it in GitHub Desktop.
hyvee.css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Browser Agent Styles */ | |
.browser-agent-overlay { | |
position: fixed; | |
top: 0; | |
right: 0; | |
width: 300px; | |
height: 100%; | |
background-color: rgba(0, 0, 0, 0.8); | |
color: white; | |
padding: 20px; | |
font-family: Arial, sans-serif; | |
z-index: 9999; | |
transition: transform 0.3s ease-in-out; | |
} | |
.browser-agent-settings-overlay { | |
position: fixed; | |
top: 0; | |
right: -300px; | |
width: 300px; | |
height: 100%; | |
background-color: rgba(0, 0, 0, 0.8); | |
color: white; | |
padding: 20px; | |
font-family: Arial, sans-serif; | |
z-index: 10000; | |
transition: transform 0.3s ease-in-out; | |
overflow-y: auto; | |
} | |
.browser-agent-header { | |
margin-top: 0; | |
} | |
.browser-agent-button-container { | |
position: absolute; | |
top: 10px; | |
right: 10px; | |
display: flex; | |
gap: 10px; | |
} | |
.browser-agent-icon-button { | |
background: none; | |
border: none; | |
color: white; | |
font-size: 20px; | |
cursor: pointer; | |
padding: 5px 10px; | |
} | |
.browser-agent-button { | |
background-color: #4CAF50; | |
border: none; | |
color: white; | |
padding: 5px 10px; | |
text-align: center; | |
text-decoration: none; | |
display: inline-block; | |
font-size: 14px; | |
cursor: pointer; | |
border-radius: 4px; | |
} | |
.browser-agent-button.red { | |
background-color: #f44336; | |
} | |
.browser-agent-maximize-button { | |
position: fixed; | |
top: 10px; | |
right: 10px; | |
display: none; | |
z-index: 10000; | |
} | |
.browser-agent-task-list { | |
list-style-type: none; | |
padding: 0; | |
} | |
.browser-agent-task-button { | |
background-color: #4CAF50; | |
border: none; | |
color: white; | |
padding: 10px 20px; | |
text-align: center; | |
text-decoration: none; | |
display: inline-block; | |
font-size: 16px; | |
margin: 4px 2px; | |
cursor: pointer; | |
border-radius: 4px; | |
} | |
.browser-agent-input { | |
width: 100%; | |
margin-bottom: 10px; | |
} | |
.browser-agent-label { | |
display: block; | |
margin-bottom: 5px; | |
} | |
.browser-agent-task-editor { | |
margin-top: 20px; | |
} | |
.browser-agent-loading-message, | |
.browser-agent-error-message { | |
position: fixed; | |
top: 50%; | |
left: 50%; | |
transform: translate(-50%, -50%); | |
background-color: rgba(0, 0, 0, 0.8); | |
color: white; | |
padding: 20px; | |
border-radius: 10px; | |
z-index: 10001; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment