-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.scss
77 lines (63 loc) · 1.22 KB
/
style.scss
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
@import 'components';
@import 'buttons';
body {
background: url("images/backgrounds/road1/road1_2000px.jpg") no-repeat fixed;
background-size: cover;
background-attachment: fixed;
background-position: center center;
@media only screen and (max-width: 500px) {
background-attachment: scroll;
}
}
.container-fluid {
text-align: center;
font-family: Ubuntu, Helvetica, sans-serif;
}
.page-wrap {
display: flex;
flex-direction: column;
min-height: 100vh;
margin-bottom: -30px;
}
@media only screen and (max-width: 500px) {
.content {
background-color: transparent;
margin: auto;
width: 100%;
padding-top: 20px;
}
}
@media only screen and (min-width: 500px) {
.content {
width: 320px;
margin: auto;
border-radius: 15px;
padding: 20px;
background-color: rgba(0, 0, 0, 0.20);
margin-top: 50px;
margin-bottom: 50px;
}
}
.buttonsContainer {
display: flex;
flex-direction: column;
margin-top: 20px;
}
.login {
font-weight: 500;
}
.footer {
margin-top: 30px;
}
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
}