Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug Fix: 'Tell your story' form button now changes to hindi text when switched to hindi with proper css #49269

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion layouts/case-studies/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ <h3>{{ .Title }}</h3>
{{ end }}
</a>
{{ end }}
<a target="_blank" href="https://docs.google.com/a/google.com/forms/d/e/1FAIpQLScuI7Ye3VQHQTwBASrgkjQDSS5TP0g3AXfFhwSM9YpHgxRKFA/viewform" class="tell-your-story"><img height="127px"src="/images/case-studies/story.svg" alt="{{ T "layouts_case_studies_list_tell" }}"></a>
<a target="_blank" href="https://docs.google.com/a/google.com/forms/d/e/1FAIpQLScuI7Ye3VQHQTwBASrgkjQDSS5TP0g3AXfFhwSM9YpHgxRKFA/viewform" class="tell-your-story">{{ T "layouts_case_studies_list_tell" }}</a>
</div>
</div>
</section>
Expand Down
16 changes: 13 additions & 3 deletions static/css/gridpage.css
Original file line number Diff line number Diff line change
Expand Up @@ -201,9 +201,19 @@ p.attrib {
}

.tell-your-story {
border: 1px solid #dddddd;
border-radius: 6px;
box-shadow: 1px 2px 2px #dddddd;
display: flex;
justify-content: center;
align-items: center;
height: 100%;
padding: 50px;
font-weight: 1000;
font-size: x-large;
background: #847f7f33;
}
.tell-your-story:hover {
background: #847f7f66;
transform: perspective(1000px) rotateY(10deg);
transition: transform 0.5s;
}

.gridPage .feature {
Expand Down