forked from ruhirani011/test_repo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
46 lines (40 loc) · 1.18 KB
/
styles.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
body {
background: #ee9ca7; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #67d3d3, #afe0e4); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #67d3d3, #afe0e4); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.button {
display: inline-block;
padding: 15px 25px;
font-size: 24px;
cursor: pointer;
text-align: center;
text-decoration: none;
outline: none;
color: #fff;
background-color: #0c3252;
border: none;
border-radius: 15px;
box-shadow: 0 9px rgb(132, 220, 223);
}
.button:hover {background-color: #182b81}
.button:active {
background-color: #7c177c;
box-shadow: 0 5px #666;
transform: translateY(4px);
}
#container {
display:grid;
/* place-content: center; */
grid-template-columns: repeat(5, 1fr);
/* grid-template-rows: repeat(4, 1fr); */
grid-gap: 15px;
}
h1{
text-align: center;
justify-content: center;
font-family: 'Domine', serif;
font-size: 80px;
color: #e6541a;
user-select: none;
}