-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
52 lines (43 loc) · 811 Bytes
/
Copy pathstyle.css
File metadata and controls
52 lines (43 loc) · 811 Bytes
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
canvas {
}
body{
display: grid;
grid-template-rows:10% 1fr;
grid-template-areas: "header" "main";
min-height:100vh;
height:100vh;
place-content: center center;
place-items: center center;
}
h1{
text-align: center;
font-family: sans-serif;
}
h2{
text-align: center;
}
.visually-hidden {
clip: rect(0 0 0 0);
clip-path: inset(50%);
height: 1px;
overflow: hidden;
position: absolute;
white-space: nowrap;
width: 1px;
}
label{
text-align: center;
width: 200px;
height: 40px;
background-color:rgb(55, 182, 76);
color:white;
display: flex;
place-content: center center;
place-items:center center;
border-radius:20px;
text-transform:uppercase;
font-size:14px;
font-weight:bold;
font-family:sans-serif;
box-shadow: 1px 2px 0px rgb(45, 148, 62);
}