-
Notifications
You must be signed in to change notification settings - Fork 0
/
css2.css
124 lines (100 loc) · 1.69 KB
/
css2.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
.dark_html{
font-family: "Roboto Mono";
font-size: 10pt;
background-color: #1a1a1a;
color: #03A63D;
}
.light_html{
font-family: "Roboto Mono";
font-size: 10pt;
background-color: #fff;
color: #1a1a1a;
}
#topmenu{
position: fixed;
top: 0px;
left: 0px;
width: 100%;
}
#foot{
bottom: 0px;
left: 0px;
}
/* Custom Green Button */
.button.is-green {
background-color: transparent;
border-color: #03A63D;
color: #03A63D;
}
.button.is-green:hover, .button.is-success.is-hovered {
background-color: #03A63D;
border-color: #03A63D;
color: #fff;
}
/* End */
/* Container holding the image and the text */
.container {
position: relative;
text-align: center;
color: white;
}
/* Bottom left text */
.bottom-left {
position: absolute;
bottom: 8px;
left: 10%;
}
.positioncontrol {
position: absolute;
top: 8px;
left: 0%;
width: 100%;
}
/* Top left text */
.top-left {
position: absolute;
top: 0px;
left: 0%;
}
/* Top right text */
/*.top-right {
position: absolute;
top: 8px;
right: 16px;
}*/
.top-right {
position: absolute;
top: 25px;
right: 10%;
}
.top {
position: absolute;
top: 25px;
left: 10%;
}
.bottom {
position: absolute;
bottom: 25px;
left: 10%;
}
.center {
position: absolute;
bottom: 25px;
left: 50%;
}
.watermark{
opacity: 0.5;
}
/* Bottom right text */
.bottom-right {
position: absolute;
bottom: 25px;
right: 16px;
}
/* Centered text */
.centered {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}