-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
81 lines (68 loc) · 1.24 KB
/
style.css
File metadata and controls
81 lines (68 loc) · 1.24 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
* {
margin: 0px;
padding: 0px;
}
body {
background-color: #DCDADA;
}
h2 {
text-align: center;
}
p {
text-align: center;
font-size: 13px;
}
.header {
padding-top: 5px;
padding-bottom: 5px;
height: 25px;
width: 100%;
display: flex;
justify-content: space-around;
background-color: #DCDADA;
}
.btn-primary {
color: white;
padding: 3px;
background-color: #1646D5;
border: 1px solid #1646D5;
border-radius: 5px;
}
#wrapper {
padding-top: 150px;
width: 100%;
height: 400px;
background-image: url("https://images.pexels.com/photos/462024/pexels-photo-462024.jpeg?auto=compress&cs=tinysrgb&w=600");
background-repeat: no-repeat;
background-size: cover;
}
.main-title {
font-size: 30px;
color: white;
text-align: center;
}
.form-zone {
width: 400px;
margin: auto;
}
#articles {
display: flex;
flex-wrap: wrap;
flex-direction: inherit;
justify-content: center;
}
.article {
text-align: center;
margin: 10px;
}
.fa-solid {
color: blue;
}
.btn-submit {
height: 40px;
}
input {
width: 150px;
padding: 10px;
border-radius: 10px;
}