-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathmain.css
127 lines (104 loc) · 2.29 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
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
body {
font-family:'Roboto', sans-serif; ;
background-color: whitesmoke;
margin: 0 auto;
background-image: url( 'https://res.cloudinary.com/partypack/image/upload/c_scale,w_5000/v1569279903/samuel-zeller-rk_Zz3b7G2Y-unsplash_zfctas.jpg');
background-size: 100%;
}
.nav-bar {
max-width: 100%;
margin: 1em 1em 3em 4%;
display: flex;
flex-direction: row;
flex-flow: row nowrap;
}
img {
margin-left: 14%;
max-width: 100%;
}
.container {
max-width: 100%;
margin: 0 auto;
display: flex;
flex-direction: row;
justify-content: space-around;
}
.btn-signup {
margin: .5em 1.5em 0em 45em;
background-color: transparent;
color: black;
border-radius: .4em;
border: none;
width: 6.7em;
height: 3.5em;
cursor: pointer;
}
.btn-signin {
margin: .5em 1.5em 0em 1em;
background-color: transparent;
color: black;
border-radius: .4em;
border: none;
width: 6.7em;
height: 3.5em;
cursor: pointer;
z-index: 1;
}
.btn-signup:hover, .btn-signin:hover {
background-color: transparent;
border: 2px solid black;
}
.btn-signup:active , .btn-signup:active {
top: .2em;
}
.welcomeContainer p {
font-size: 3vw;
line-height: .2em;
}
h4 {
color: grey;
font-style: italic;
line-height: .3em;
font-size:1vw;
}
.btn-start {
background-color:#0083FF;
color:#F5F5F5;
padding: 1em .7em;
border-radius: .5em;
border-radius: 1px solid #0083FF;
}
/* CSS for signupContainer*/
.signupContainer {
background-color: white;
color: black;
opacity: .8;
width: 13em;
padding: 1em 6em 7em 3em;
}
h2 {
text-align: center;
margin-top: 2.2em;
font-weight: bolder;
}
#fullname, #email, #password {
border-top: none;
border-left: none;
border-right: none;
border-bottom-color: dimgrey;
padding: 1em 5em 0.7em 0em;
}
.button {
background-color: #0083FF;
color: white;
padding: 1em 7em;
border-radius: .5em;
cursor: pointer;
}
.button:hover {
background-color: whitesmoke;
color: #0083FF;
}
.button:active {
top: 2px;
}