-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
79 lines (65 loc) · 935 Bytes
/
index.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
body {
height: 100%;
margin: 0px;
font-family: "Jura";
color: #11CEF8;
background-image: url('blue_cocktail.jpg');
background-size: cover;
background-repeat: no-repeat;
}
#navBar {
top: 0px;
position: fixed;
display: flex;
width: 100%;
height: 12%;
}
#links {
flex: 90%;
display: flex;
justify-content: flex-end;
vertical-align: middle;
}
#logo {
vertical-align: middle;
position: relative;
height: 28%;
flex: 10%;
padding: 2.4%
}
.navBox {
padding: 3%;
font-size: 1.8vw
}
a {
text-decoration: none;
color: #11CEF8;
}
a:hover {
color: #f7e56f;
}
#titleText {
margin: 34% 12%;
width: 500px;
}
#forms {
text-align: center;
padding: 6% 2%;
background-color: rgba(0, 0, 0, 0.5);
margin: 18% 22%;
display: flex;
}
#signup {
flex: 50%;
padding: 12%;
border-right: 1px solid white;
text-align: center;
}
#login {
padding: 12%;
flex: 50%;
text-align: center;
}
h3 {
margin-bottom: 20%;
}