-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclase26.css
More file actions
47 lines (43 loc) · 958 Bytes
/
clase26.css
File metadata and controls
47 lines (43 loc) · 958 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
body {
margin: 0;
font-family: 'Karla', sans-serif;
background-color: #14141c;
color: white;
text-align: center;
padding: 40px;
}
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
background-color: #1a1b26;
padding: 20px;
border-radius: 20px;
}
.row {
margin: 20px;
display: flex;
justify-content: space-evenly;
align-items: center;
flex-direction: row;
padding: 20px;
width: 100%;
}
.btn {
background-color: #fa6400;
border: 0px solid transparent;
border-radius: .25rem;
cursor: pointer;
font-family: system-ui, -apple-system, system-ui, "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 16px;
font-weight: 600;
padding: 10px 20px;
min-width: 110px;
}
.btn:hover,
.btn:focus {
background-color: #fb8332;
box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
}