-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
79 lines (73 loc) · 1.02 KB
/
style.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
*{
margin:0;
padding:0;
}
#header-img{
height:30px;
}
header{
display:flex;
position:fixed;
background-color:#5F9EA0;
max-width:100000px;
width:100%;
height:100px;
overflow:hidden;
top:0;
z-index:2;
}
.nav-link{
font-size:20px;
color: white;
text-decoration:none;
padding:30px;
}
#dom{
widht:500px;
height:300px;
margin-bottom:200px;
text-align: center;
margin:auto;
margin-top:200px;
position:relative;
}
#email{
width:250px;
margin-top:10px;
height:20px;
}
#submit{
width:200px;
margin-top:15px;
height:30px;
background-color:yellow;
font-weight: bold;
}
#how{
width:200px;
margin:auto;
margin-top:40px;
}
@media only screen and (max-width: 700px){
#header{
display:flex;
flex-direction:column;
height:200px;
padding:0px;
margin:0px;
width:100%;
}
#nav-bar{
display:flex;
flex-direction:column;
margin:0px;
padding:0px;
}
.nav-link{
padding:10px;
text-align: center;
}
#dom{
margin-top:300px;
}
}