-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbootstrap.css
69 lines (57 loc) · 1.06 KB
/
bootstrap.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
@import url(reset.css);
@import url(colors.css);
@import url(fonts.css);
body
{
color: var(--color-red);
font-family: var(--font-primary);
}
h1
{
font-weight: 500;
font-size: 72px;
text-transform: uppercase;
margin-bottom: -25px;
}
#covercontainer
{
height: 100vh;
background: rgb(67,125,184);
background: linear-gradient(180deg, rgba(67,125,184,1) 0%, rgba(29,56,83,1) 100%);
}
#hero
{
text-align: center;
height: 100vh;
background-image: url(world.svg);
background-repeat: no-repeat;
background-size: 40%;
background-position: center;
}
#heroslogan
{
margin-top: 20px;
font-weight: 600;
}
.space
{
margin: 30px 0;
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (max-width: 600px)
{
#hero
{
background-size: contain;
background-position: center;
padding: 0 15px;
}
h1
{
font-weight: 500;
font-size: 52px;
text-transform: uppercase;
margin-bottom: -25px;
margin-top: 25px;
}
}