-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
55 lines (47 loc) · 1.3 KB
/
style.css
File metadata and controls
55 lines (47 loc) · 1.3 KB
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
*{
margin: 0px;
}
html, body{
width: 100%;
height: 100%;
font-family: 'Cabin', sans-serif;
font-family: 'Roboto', sans-serif;
background: url(arpad-czapp-JZ2lKW6TzHU-unsplash.jpg) no-repeat center fixed;
background-size: 100% 100%;
color: white;
}
body{
display: grid;
grid-template-rows: 1fr 30px;
}
.cont1{
display: grid;
grid-template-rows: 4vw 4vw;
align-content: center;
align-items: center;
justify-items: center;
}
h1{
font-size: 5vw;
}
.congrats{
font-size: 2vw;
}
.yellow{
background: #F3AAAA; /* Old browsers */
background: -moz-linear-gradient(top, #F3AAAA 0%, #febf04 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#F3AAAA), color-stop(100%,#febf04)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #F3AAAA 0%,#febf04 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #F3AAAA 0%,#febf04 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #F3AAAA 0%,#febf04 100%); /* IE10+ */
background: linear-gradient(top, #F3AAAA 0%,#febf04 100%); /* W3C */
display: flex;
justify-content: center;
align-items: center;
font-size: 1.5em;
}
a{
/* padding-left: 10px; */
text-decoration: none;
color: white;
}