-
Notifications
You must be signed in to change notification settings - Fork 11
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 #45 from cadop/dev
Add logos for docs
- Loading branch information
Showing
4 changed files
with
35 additions
and
7 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,15 +1,43 @@ | ||
|
||
<style> | ||
.center-h { | ||
display: flex; /* or display:grid */ | ||
justify-content: center; | ||
} | ||
.center-v { | ||
display: flex; | ||
align-items: center; | ||
} | ||
.h-500 { | ||
height: 500; | ||
} | ||
img{ | ||
width: 120px; | ||
height: 120px; | ||
} | ||
|
||
button{ | ||
border: none; | ||
cursor: pointer; | ||
background-color: inherit; | ||
margin-left:20px; | ||
} | ||
</style> | ||
|
||
|
||
<div class="h-500 center-v center-h"> | ||
|
||
<button onclick="location.href='./C++/html/index.html'" type="button"> | ||
C++ Docs</button> | ||
<img src="./cpp_logo.png" alt="cpp" border="0" /> | ||
</button> | ||
|
||
<button onclick="location.href='./C%23 Public Docs/html/index.html'" type="button"> | ||
C# Docs</button> | ||
|
||
<button onclick="location.href='./C%23%20Documentation/html/index.html'" type="button"> | ||
C# Developer Docs</button> | ||
<img src="./csharp_logo.png" alt="c#" border="0" /> | ||
</button> | ||
|
||
|
||
<button onclick="location.href='./Python Docs/index.html'" type="button"> | ||
Python Docs</button> | ||
|
||
<img src="./python_logo.png" alt="python" border="0" /> | ||
</button> | ||
|
||
</div> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.