-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
120 lines (118 loc) · 2.13 KB
/
style.css
File metadata and controls
120 lines (118 loc) · 2.13 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
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
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@1,900&family=Poppins:wght@200;300;400;500;600;700&display=swap');
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
body{
font-family: 'Poppins', sans-serif;
}
a{
text-decoration: none;
color: white;
}
.header{
position: relative;
min-height: 60vh;
background: url("./bgpexels1.jpg");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
color: white;
}
.container{
max-width: 1200px;
margin: auto;
width: 90%;
}
.nav{
min-height: 8vh;
display: flex;
justify-content: space-between;
align-items: center;
}
.nav-items{
width: 40%;
display: flex;
list-style-type: none;
justify-content: space-between;
}
.headline{
text-align: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.btn{
display: inline-block;
outline: none;
border: none;
cursor: pointer;
}
.btn-headline{
padding: 1rem, 2rem;
font-size: 1rem;
margin-top: 1rem;
font-weight: 500;
}
.section-todo{
margin-top: 5rem;
text-align: center;
}
.form-todo{
min-height: 5vh;
display: flex;
justify-content: space-between;
margin: 1rem;
}
.form-todo input{
min-height: 100%;
}
.form-todo input[type="text"]{
width: 78%;
padding: 0.8rem;
font-size: 1rem;
font-weight: 450;
}
.form-todo input[type="submit"]{
width: 20%;
background: rgb(13, 61, 56);
color: white;
font-weight: bold;
}
.section-signup{
margin: 5rem auto;
text-align: center;
background-color: rgb(106, 138, 116);
border-radius: 10px;
padding: 1rem;
}
.singup-form{
max-width: 800px;
width: 95%;
text-align: left;
margin: auto;
}
.singup-form label{
display: block;
}
.singup-form input{
display: block;
width: 100%;
padding: 0.5rem;
}
.form-group{
margin-top: 1rem;
}
.sign-form textarea{
width: 100%;
}
.signup-btn{
background: rgb(13, 61, 56);
color: white;
padding: 1rem 2rem;
display: block;
margin: auto;
margin-top: 1rem;
}