-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
84 lines (72 loc) · 1.24 KB
/
style.css
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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
font-family: "Roboto", sans-serif;
font-weight: 400;
font-size: 2rem;
line-height: 1.5;
}
.content {
position: relative;
text-align: center;
height: 100vh;
}
.title-box {
position: absolute;
top: 45%;
left: 50%;
transform: translate(-50%, -50%);
}
.heading {
display: block;
text-transform: capitalize;
letter-spacing: 2px;
color: #102b42;
margin-bottom: 30px;
border-radius: 10px;
}
.number {
display: block;
font-size: 1.75em;
margin-bottom: 10px;
color: green;
}
.btn {
width: 200px;
text-transform: uppercase;
letter-spacing: 1.25px;
cursor: pointer;
padding: 10px;
border-radius: 10px;
font-size: 26px;
font-weight: bold;
}
.btn-outline {
border: 5px solid black;
background-color: #fff;
}
.btn-primary {
background-color: rgba(255, 255, 255, 0.25);
}
.btn:hover {
color: white;
background-color: black;
box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.5);
}
.btn:active {
transform: translateY(1.5px);
box-shadow: 0px 7.5px 15px 0 rgba(0, 0, 0, 0.5);
}
.grid-container {
display: grid;
grid-template-columns: auto auto auto;
padding: 0px 50px;
}
.grid-item {
margin: 20px;
padding: 10px;
text-align: center;
}