-
Notifications
You must be signed in to change notification settings - Fork 120
/
style.css
85 lines (67 loc) · 1.22 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
85
/* to display text in front of the aframe canvas*/
a-scene{
z-index: -1;
}
/**/
body{
background-color: #000;
/*margin: 0px;
overflow: hidden;*/
color: #fff;
font-family: 'Arial',
}
a:link, a:hover, a:visited, a:active {
color: white;
text-decoration: none;
}
.container{
position:absolute;
width:100%;
display: flex;
justify-content: center;
margin-top: 15%;
}
.info{
font-family: Arial;
position:absolute;
background-color: rgba(255, 255, 255, 0.5);
padding: 30px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 500px;
position: absolute;
/*top: 50%;*/
left: 50%;
transform: translate(-50%, -0%);
}
.info .company{
font-size: 2em;
}
.info .title{
font-size: 7em;
font-family: 'Poiret One', cursive;
}
.info .button{
font-weight: bold;
background-color: limegreen;
padding: 10px;
margin: 24px 0 0 0;
}
.info .instructions{
background-color: rgba(0, 0, 0, 0.1);
padding: 30px;
margin: 24px 0 0 0;
}
@media (max-width: 600px) {
.info {
width: 60%
}
.info .company{
font-size: 1em;
}
.info .title{
font-size: 3em;
}
}