-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
81 lines (72 loc) · 1.17 KB
/
Copy pathstyle.css
File metadata and controls
81 lines (72 loc) · 1.17 KB
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
body {
margin: 0;
height: 630px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.main {
background-image: url("net.png");
width: 100%;
height: 100%;
position: relative;
z-index: 1;
background-repeat: no-repeat;
background-size: cover;
display: flex;
flex-direction: column;
align-items: center;
}
.navBar {
width: 94%;
padding: 0 3%;
display: flex;
justify-content: space-between;
align-items: center;
}
.navBar img {
width: 130px;
}
.navBar button {
background: #e50914;
border: none;
color: #fff;
width: 11%;
height: 38px;
border-radius: 2px;
font-size: 18px;
cursor: pointer;
}
.container {
width: 27%;
display: flex;
flex-wrap: wrap;
margin-left: auto;
margin-right: auto;
text-align: center;
padding-top: 60px;
color: #fff;
}
.container h1 {
font-size: 37px;
}
.container button {
background: #e50914;
border: none;
width: 70%;
height: 45px;
font-size: 22px;
cursor: pointer;
color: #fff;
margin: 5% auto;
border-radius: 2px;
}
.overlay {
height: 100%;
background: #000;
opacity: 0.6;
position: absolute;
width: 100%;
z-index: -1;
}
.container p {
font-size: 18px;
}