-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
44 lines (44 loc) · 826 Bytes
/
Copy pathstyle.css
File metadata and controls
44 lines (44 loc) · 826 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
justify-items: center;
align-content: center;
height: 100vh;
background-color: #00001a;
color: white;
}
.container{
border-left:3px solid #4CAF50;
border-right:3px solid #4CAF50;
width: 60%;
height: 60%;
justify-items: center;
}
.card{
border-top: 2px solid #4CAF50;
border-bottom: 2px solid #4CAF50;
width: 80%;
height: 80%;
align-content: center;
justify-items: center;
}
h1,h2{
font-weight: 600;
padding: 12px;
text-transform: uppercase;
}
button{
padding: 12px;
background-color: #4CAF50;
color: white;
border: none;
cursor: pointer;
font-size: 16px;
transition: .5s ease-in-out;
}
button:hover{
background-color: #45a049;
}