Skip to content

Commit

Permalink
update 0.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeWithSushil committed Aug 17, 2023
1 parent da16622 commit 824a0c7
Show file tree
Hide file tree
Showing 4 changed files with 109 additions and 72 deletions.
7 changes: 6 additions & 1 deletion css/minimal.css
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ h6 {
.margin-x {
margin: 0rem 1rem !important;
}
.m-auto {
.margin-auto {
margin: auto !important;
}

Expand Down Expand Up @@ -535,6 +535,11 @@ button,
background-color: var(--light) !important;
border-color: var(--danger) !important;
}
.btn-danger-none{
color: var(--danger)!important;
border-color: var(--danger)!important;
}

.btn-success {
text-align: center !important;
color: var(--light) !important;
Expand Down
8 changes: 6 additions & 2 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ body {
height: 100%;
}

h1,h2,h3,h4,h5,h6{
font-family:var(--ubuntu)!important;
}

.navbar {
margin-top: 1rem!important;
margin-left: 1rem!important;
Expand Down Expand Up @@ -61,6 +65,6 @@ nav-list #github {
padding: 4px;
}
footer,p,i{
font-family:var(--ubuntu);
font-family:var(--fira)!important;
font-size: 15px!important;
}
}
161 changes: 93 additions & 68 deletions docs/index.html
Original file line number Diff line number Diff line change
@@ -1,70 +1,95 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta http-equiv="X-UA-Compatible" content="ie=edge"/>
<meta rel="icon" type="image/png" href="../images/favicon.ico"/>
<link rel="android-chrome" sizes="512x512" href="../images/android-chrome-512x512.png">
<link rel="android-chrome" sizes="192x192" href="../images/android-chrome-192x192.png">
<link rel="apple-touch-icon" sizes="180x180" href="../images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../images/favicon-16x16.png">
<link rel="manifest" href="../images/site.webmanifest">
<meta name="description" content="Minimal CSS - Never leave your html files"/>
<meta name="keywords" content="Minimal CSS, css, css frameworks, modern css, modern frameworks, modern css frameworks"/>
<meta name="author" content="CodeWithSuhil (Sushil Kumar)"/>
<title> Minimal CSS - Never leave your html files </title>
<meta property="og:title" content="Minimal CSS - Never leave your html files">
<meta property="og:description" content="Minimal CSS - Never leave your html files"/>
<meta property="og:keywords" content="Minimal CSS, css, css frameworks, modern css, modern frameworks, modern css frameworks" />
<meta property="og:author" content="CodeWithSuhil (Sushil Kumar)"/>
<link rel="stylesheet" type="text/css" href="../css/minimal.css">
<link rel="stylesheet" type="text/css" href="../css/style.css">
</head>
<body>
<nav class="navbar">
<a class="brand" href="#">
<img class="logo" src="../images/android-chrome-512x512.png" alt="Minimal.css Logo">
</a>
<ul class="nav-list">
<li>
<a title="Github" href="https://github.com/CodeWithSushil/minimal.css/">
<img id="github" alt="Github Repo" src="../images/github-mark-white.png">
</a>
</li>
</ul>
</nav>

<div class="wrapper">
<div class="row">

<div class="col-4 bg-success">
<div class="card">
<h4>Get Started</h4>
<p>gg</p>
</div>
</div>
<div class="col-4 bg-primary">
<div class="card">
<h4>Docum</h4>
<p>gg</p>
</div>
</div>
<div class="col-4 bg-warning">
<div class="card flex">
<h4>Download</h4>
<p>rff</p>
<p>gg</p>ggg
fgg
<a href="./index.html">http://localhost:8158/docs/index.html</a>
<a href="../index.html">yy#</a>
</div>
</div>

</div>
</div>

<script src="../js/main.js"></script>
</body>
</html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<meta rel="icon" type="image/png" href="../images/favicon.ico" />
<link
rel="android-chrome"
sizes="512x512"
href="../images/android-chrome-512x512.png"
/>
<link
rel="android-chrome"
sizes="192x192"
href="../images/android-chrome-192x192.png"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="../images/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="../images/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="../images/favicon-16x16.png"
/>
<link rel="manifest" href="../images/site.webmanifest" />
<meta
name="description"
content="Minimal CSS - Never leave your html files"
/>
<meta
name="keywords"
content="Minimal CSS, css, css frameworks, modern css, modern frameworks, modern css frameworks"
/>
<meta name="author" content="CodeWithSuhil (Sushil Kumar)" />
<title>Minimal CSS - Never leave your html files</title>
<meta
property="og:title"
content="Minimal CSS - Never leave your html files"
/>
<meta
property="og:description"
content="Minimal CSS - Never leave your html files"
/>
<meta
property="og:keywords"
content="Minimal CSS, css, css frameworks, modern css, modern frameworks, modern css frameworks"
/>
<meta property="og:author" content="CodeWithSuhil (Sushil Kumar)" />
<link rel="stylesheet" type="text/css" href="../css/minimal.css" />
<link rel="stylesheet" type="text/css" href="../css/style.css" />
</head>
<body>
<nav class="navbar">
<a class="brand" href="./index.html">
<img
class="logo"
src="../images/android-chrome-512x512.png"
alt="Minimal.css Logo"
/>
</a>
<ul class="nav-list">
<li>
<a
title="Github"
href="https://github.com/CodeWithSushil/minimal.css/"
>
<img
id="github"
alt="Github Repo"
src="../images/github-mark-white.png"
/>
</a>
</li>
</ul>
</nav>

<footer class="padding-ao margin bg-dark">
<p class="txt-center">
&copy;<i id="year"></i> All Rights Reserved. Minimal CSS Powered
by ♥️ Minimal.css
</p>
</footer>
<script src="../js/main.js"></script>
</body>
</html>
5 changes: 4 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
</head>
<body>
<nav class="navbar">
<a class="brand" href="#">
<a class="brand" href="./index.html">
<img
class="logo"
src="./images/android-chrome-512x512.png"
Expand Down Expand Up @@ -89,6 +89,9 @@
<h3 class="txt-center font txt-white">
Welcome to Minimal CSS
</h3>
<div class="card">
<a class="btn txt-warning txt-center" href="./docs/index.html">Docs</a>
</div>
</div>
</div>

Expand Down

0 comments on commit 824a0c7

Please sign in to comment.