-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
70 lines (56 loc) · 946 Bytes
/
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
body{
background-color: #fff;
color: #fff;
font-family: 'Arial',
}
div{
display: inline;
}
a:link, a:hover, a:visited, a:active {
color: white;
text-decoration: none;
}
.container{
position:absolute;
width:100%;
display: flex;
margin-top: 0%;
z-index: 10000;
}
.info{
font-family: Arial;
position:absolute;
background-color: rgba(255, 255, 255, 0.5);
padding: 0px;
width: 100%;
position: absolute;
left: 0%;
}
.info .company{
display: inline;
width: 10%;
font-size: 1em;
}
.info .title{
display: inline;
font-size: 1em;
font-family: 'Poiret One', cursive;
}
.info .instructions{
display: inline;
background-color: rgba(0, 0, 0, 0.1);
padding: 0px;
margin: 0px 0 0 0;
font-size: .7em;
}
@media (max-width: 600px) {
.info {
width: 100%
}
.info .company{
font-size: 1em;
}
.info .title{
font-size: 1em;
}
}