-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
88 lines (77 loc) · 1.29 KB
/
main.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
86
87
88
body {
margin: 0;
background-color: #FFC833;
}
h1 {
padding-top: 0px;
margin-top: 0px;
margin-bottom:0px;
padding-bottom:0px;
}
h2 {
font-family:'Helvetica', 'Arial', 'Sans-Serif';
color: dimgrey;
margin-bottom: 0.1em;
}
p {
font-family:'Helvetica', 'Arial', 'Sans-Serif';
font-size:1.3em;
font-weight:normal;
color: dimgrey;
}
textarea {
font-size:1.2em;
background-color: lightgrey;
border: 0px solid grey;
}
a {
color: #6c00ff;
text-decoration: inherit;
}
.description {
padding-left:40px;
width:80%;
}
.encoder {
padding-top:6vw;
}
.header {
position: fixed;
top: 0;
right: 0;
text-align: right;
color: white;
font-family:'Helvetica', 'Arial', 'Sans-Serif';
font-size: 4vw;
transition: 0.2s;
padding: 10px;
}
.footer {
position: fixed;
bottom: 0;
right: 0;
text-align: right;
color: white;
font-family:'Helvetica', 'Arial', 'Sans-Serif';
font-size: 3vw;
padding: 10px;
}
.leftfoot {
position: fixed;
bottom: -20px;
left: 0;
text-align: left;
color: white;
font-family:'Helvetica', 'Arial', 'Sans-Serif';
font-size: 3vw;
padding: 10px;
}
.rotate_image {
-webkit-transform: rotate(20deg);
-moz-transform: rotate(20deg);
-ms-transform: rotate(20deg);
-o-transform: rotate(20deg);
transform: rotate(20deg);
border: 1px solid black;
border-radius: 5px;
}