-
Notifications
You must be signed in to change notification settings - Fork 3
/
utilities.html
98 lines (97 loc) · 5.69 KB
/
utilities.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<html>
<head>
<title>Fluent Design - Utilities</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Product+Sans" rel="stylesheet">
<link href="normalize.css" rel="stylesheet" type="text/css">
<link href="fluent.css" rel="stylesheet" type="text/css">
<link href="Icons/css/fluent-icons.css" rel="stylesheet" type="text/css">
<script src="fluent.js"></script>
</head>
<body>
<div class="column large12 pivot_container secondary_blue" style="position: fixed;">
<a class="pivot_button icon left" onclick="history.back();">
<i class="ms-Icon ms-Icon--Back" aria-hidden="true"></i>
</a>
<a class="pivot_button icon left" onclick="history.forward();">
<i class="ms-Icon ms-Icon--Forward" aria-hidden="true"></i>
</a>
<span class="small0 pivot_heading">Fluent Design For Web</span>
<a href="controls.html" class="pivot_button right active">Controls</a>
<a href="styles.html" class="pivot_button right">Styles</a>
<a href="index.html" class="pivot_button right">Home</a>
</div><br><br><br><br>
<div class="nav_container column large3 medium3 small0">
<h5>Fabric UI</h5>
<div class="navigation_container">
<span class="navigation_val"><i class="ms-Icon ms-Icon--Chevronright nav_disp"></i>Styles</span><input type="checkbox" class="navigation_button">
<div class="navigation_group">
<a href="typography.html"><li class="navigation_item">Typography</li></a>
<a href="elevation.html"><li class="navigation_item">Elevation</li></a>
<a href="colors.html"><li class="navigation_item">Colors</li></a>
<a href="grid.html"><li class="navigation_item">Grid Layout</li></a>
<a href="Icons/fluent-icons.html"><li class="navigation_item">Icon Pack</li></a>
</div>
</div><br><br>
<div class="navigation_container">
<span class="navigation_val"><i class="ms-Icon ms-Icon--Chevronright nav_disp"></i>Controls</span><input checked type="checkbox" class="navigation_button">
<div class="navigation_group">
<a href="inputs.html"><li class="navigation_item">Inputs</li></a>
<a href="utilities.html"><li class="navigation_item">Utilities</li></a>
<a href="surfaces.html"><li class="navigation_item">Surfaces</li></a>
<a href="listsandtables.html"><li class="navigation_item">List and Tables</li></a>
<a href="nav.html"><li class="navigation_item">Navigations</li></a>
<a href="progress.html"><li class="navigation_item">Progress</li></a>
</div>
</div>
</div>
<div class="page_container column large9 medium9 small12 right">
<h2>Buttons</h2>
<h7>Primary Buttons</h7><br>
<button class="small primary_white">Primary Button</button>
<button class="small primary_blue">Primary Blue</button>
<button class="small primary_green">Primary Green</button>
<button class="small primary_red">Primary Red</button>
<button class="small primary_yellow">Primary Yellow</button>
<button class="small primary_inverted">Primary Inverted</button><br><br>
<h7>Secondary Buttons</h7><br>
<button class="small secondary_blue">Secondary Blue</button>
<button class="small secondary_green">Secondary Green</button><br><br>
<h7>Frosted Buttons</h7><br>
<button class="small frost_container primary_blue" onmouseover="frosting();">
<span class="frost">Frost</span>
</button>
<button class="small frost_container primary_inverted" onmouseover="frosting();">
<span class="frost">Buttons</span>
</button>
<button class="small frost_container primary_green large" onmouseover="frosting();">
<span class="frost">Large Frost Button</span>
</button><br><br><br>
<h2>Dropdown</h2>
<ul class="dropdown">
<p class="dropdown_btn">Dropdown</p>
<li>Drop 1</li>
<li>Drop 2</li>
<li>Drop 3</li>
<li>Drop 4</li>
<li>Drop 5</li>
</ul>
<br><br><br><br>
<h2>Overlay</h2>
<h7>Hover over overlay to see info</h7>
<div class="overlay_container">
<img src="COLOR_SCHEME_1.png" class="overlay_content">
<div class="overlay">
<h7>This Is Some Overlay Info</h7>
</div>
</div><br><br><br>
<h2>Snackbar</h2>
<h7>Click on the button to see a snackbar</h7>
<div class="snackbar_container">
<button class="small snackbar_button">Open Snackbar</button><br>
<span class="snackbar_content primary_yellow">This Is Some Snackbar Content, click somewhere else to close this snackbar</span>
</div>
</div>
<footer class="column large12 medium12 small12 primary_green">Fork The Project From <a href="https://github.com/shivendrasaurav/Fluent-Design-For-Web/">Github</a></footer>
</body>
</html>