-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27988 from rushatgabhane/help-dot-styling
[HelpDot] Add styling for home page and hub page
- Loading branch information
Showing
129 changed files
with
550 additions
and
185 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,22 @@ | ||
{% assign platform = site.data.routes.platforms | where: "href", include.href | first %} | ||
|
||
<a class="card" href="/{{ platform.href }}/hubs"> | ||
<a class="platform-card" href="/{{ platform.href }}/hubs"> | ||
<div class="row"> | ||
<div class="left-icon"> | ||
<img class="icon" src="{{ platform.image }}" alt="{{ platform.href }}"/> | ||
</div> | ||
<div class="body"> | ||
<h3 class="title with-margin">{{ platform.title }}</h3> | ||
<p class="description with-min-height">{{ platform.description }}</p> | ||
<div class="header"> | ||
<div> | ||
<h3 class="title with-margin">{{ platform.title }}</h3> | ||
<p class="url">{{ platform.url }}</p> | ||
</div> | ||
<div class="select-button"> | ||
<button class="success">Select</button> | ||
</div> | ||
</div> | ||
|
||
<p class="description">{{ platform.description }}</p> | ||
</div> | ||
<div class="platform-screenshot"> | ||
<img src="{{ platform.image }}" alt="{{ platform.href }}"/> | ||
</div> | ||
</div> | ||
</a> |
This file contains 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
Oops, something went wrong.