-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
73 lines (64 loc) · 1.26 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
.rounded-borders {
border-radius: 10px;
border: medium solid #E5E5E5;
}
/* background image */
body {
background: url(images/farbrausch.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
#content {
background-color: white;
}
/* center vertically + horizontally */
.center {
width: 40%;
height: 40%;
background-color: white;
position:absolute;
left:0; right:0;
top:0; bottom:0;
margin:auto;
max-width:100%;
max-height:100%;
overflow:auto;
}
.background {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
background-color: transparent;
}
/* login form/label */
.form-label {
font-family: 'Josefin Sans', sans-serif;
font-size: 1.5em;
}
form {
margin-left: 10%;
margin-right: 10%;
margin-bottom: 5%;
margin-top: 5%;
}
.text-input {
border-radius: 5px;
width: 100%;
height: 50px;
font-size: 1.25em;
font-family: 'Josefin Sans', sans-serif;
margin-top: -5%;
margin-bottom: 5%;
}
.button {
width: 60%;
height: 60px;
background-color: green;
color: white;
font-family: 'Josefin Sans', sans-serif;
font-size: 1.25em;
text-align: center;
}