-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.css
135 lines (121 loc) · 2.46 KB
/
app.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
125
126
127
128
129
130
131
132
133
134
135
@charset "utf-8";
/* CSS Document */
@import url(https://fonts.googleapis.com/css?family=Roboto:100,100italic,300,300italic,400,400italic,500,500italic,700,700italic,900,900italic&subset=latin,latin-ext,cyrillic,cyrillic-ext,greek-ext,greek,vietnamese);
@import url('https://fonts.googleapis.com/css?family=Lato|Montserrat:400,700,800,900');
.logo {
text-align: center;
}
.wrapper {
min-height: calc(100vh - 180.1px);
display: inline-block;
width: 100%;
margin-bottom: -56px;
margin-top: 32.7px;
}
.my-footer {
margin-top: 100px;
margin-bottom: -100px;
height: 56px;
bottom: 10px;
text-align: center;
width: 100%;
}
.disclaimer {
color: #828282;
margin: auto;
width: 70%;
}
.navbar {
list-style-type: none;
margin: -10px 10px;
padding: 0;
overflow: hidden;
background-color: #333;
position: sticky;
position: -webkit-sticky; /* Safari */
top: 0;
font-family: Roboto, Tahoma;
border-radius: 0px 0px 10px 10px;
z-index: 1;
}
.navbar li a{
font-size: 20px;
display: block;
color: #F3F3F3;
padding: 12px 16px;
text-align: center;
text-decoration: none;
float:left;
transition: background-color 100ms linear;
}
.navbar li a:hover {
background-color: #111;
}
.adminmsg {
position: sticky;
opacity: 0;
color: white;
background: #333333;
margin: 12px 30px;
border: #707070;
border-style: dashed;
border-radius: 0px 0px 10px 10px;
border-width: 0px;
border-top-width: 1.5px;
padding: 3px 8px;
transition: opacity 0.3s;
z-index: 0;
}
.adminmsgx {
float: right;
width: 20px;
text-align: center;
border-radius: 5px;
border-width: 1px;
border-style: solid;
border-color: rgba(0,0,0,0.00);
margin: -1px 0px;
cursor: pointer;
}
.adminmsgx:hover {
border-color: gray;
}
.adminmsgtext {
margin: 5px;
display: block;
font-family: Roboto;
font-weight: 500;
font-size: 13px;
}
.body {
background: #303030;
background-image: url("https://www.toptal.com/designers/subtlepatterns/patterns/carbon_fibre.png");
background-blend-mode: overlay;
transform:translate3d(0,0,0);
}
.center {
text-align: center;
margin: auto;
top: 80px;
right:50%;
width: 70%;
}
.text {
color: white;
font-family: Montserrat;
text-align: left;
}
.download {
background: #7c7c7c;
border: 3px solid #9d9d9d;
border-radius: 1000px;
padding: 8px 20px;
color: #fbfbfb;
display: inline-block;
text-align: center;
text-shadow: 1px 1px #000000;
text-decoration: none;
font-family: Montserrat;
font-size: 18px;
margin-left: 5.58px;
}