-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (65 loc) · 2.83 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WaweCss</title>
<link rel="stylesheet" href="wawe.css">
</head>
<body class="bgr-white">
<div class="text-center">
<button class="button-aqua radius-10 m-left-9 responsive-button">Button Example Aqua</button>
</div><br>
<div class="text-center">
<button class="button-orange radius-6 m-left-9 responsive-button">Button Example Orange</button>
</div><br>
<div class="text-center">
<button class="button-red radius-8 m-left-9 responsive-button">Button Example Red</button>
</div><br>
<div class="text-center">
<button class="bgr-gray radius-8 cp m-left-9 responsive-button">Button bgr-gray</button>
</div><br>
<div class="text-center">
<button class="cp default-button bgr-dark text-white radius-7 m-left-9 responsive-button">Default
Button</button>
</div>
<p class="text-center white-effect">White effect!</p>
<p class="text-center red-effect">Red effect!</p>
<p class="text-center orange-effect">Orange effect!</p>
<p class="text-center yellow-effect">Yellow effect!</p>
<div class="container-1200 responsive-container">
<h1 class="text-center">Hello, I'm a WaweCSS CSS container instance!</h1>
<p class="text-center">This is an example of a paragraph.</p>
<img class="mx-auto d-block"
src="https://cdn.discordapp.com/attachments/1136594433538789426/1137752150806626386/image_2.png"
alt="Picture Example">
</div><br>
<h1 class="text-center">Cards Example</h1>
<div class="cards mx-auto">
<h3 class="text-center">WaweCSS default (button) Cards</h3>
<p class="text-center">Description will go here.</p>
<div class="text-center">
<button class="cp default-button bgr-dark text-white radius-7 m-left-9 responsive-button">Default
Button</button>
</div>
</div><br>
<div class="cards mx-auto">
<img src="https://cdn.discordapp.com/attachments/1136594433538789426/1137752150806626386/image_2.png"
alt="Picture Example">
<h3>WaweCSS default Cards</h3>
<p>Description will go here.</p>
</div><br>
<div class="cards-shadowy mx-auto">
<img src="https://cdn.discordapp.com/attachments/1136594433538789426/1137752150806626386/image_2.png"
alt="Picture Example">
<h3>WaweCSS shadowy Cards</h3>
<p>Description will go here.</p>
</div><br>
<div class="cards-border mx-auto">
<img src="https://cdn.discordapp.com/attachments/1136594433538789426/1137752150806626386/image_2.png"
alt="Picture Example">
<h3>WaweCSS border Cards</h3>
<p>Description will go here.</p>
</div>
</body>
</html>