-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtest_styles.html
More file actions
49 lines (46 loc) · 1.41 KB
/
test_styles.html
File metadata and controls
49 lines (46 loc) · 1.41 KB
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
<head>
<link rel="stylesheet" type="text/css" href="./css/neon.css">
<style>
.box{
width: 100px;
height: 100px;
border-radius: 5px;
margin: 15px;
}
body{
background-color: #222;
display: flex;
flex-wrap: wrap;
}
p{
margin: 15px;
}
body div {
display: flex;
justify-content: center;
align-items: center;
}
</style>
</head>
<body>
<div class="box neon neon-rotate"></div>
<div class="box red-orange-neon neon-tick">
<p class="neon-text">Neon box</p>
</div>
<div class="box orange-neon"></div>
<div class="box vivid-yellow-neon"></div>
<div class="box bright-yellow-neon"></div>
<div class="box green-neon"></div>
<div class="box yellow-green-neon"></div>
<div class="box lime-neon"></div>
<div class="box vibrant-lime-neon neon-rotate"></div>
<div class="box vibrant-aqua"></div>
<div class="box cyan-neon"></div>
<div class="box bright-cyan-neon neon-tick"></div>
<div class="box vibrant-blue"></div>
<div class="box deep-purple neon-tick"></div>
<div class="box magenta-neon"></div>
<div class="box vibrant-magenta-neon neon-tick"></div>
<p class="neon-text">This is neon text</p>
<p class="neon-text neon-text-tick">This is neon text</p>
</body>