-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
120 lines (101 loc) · 1.78 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
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Roboto', sans-serif;
}
a {
text-decoration: none;
color: #f9faf8;
}
.header {
background-color: #1f2937;
color: #f9faf8;
padding: 20px 150px;
padding-bottom: 100px;
}
.top-bar {
display: flex;
align-content: center;
justify-content: space-between;
margin-bottom: 50px;
}
.right-top-bar {
display: flex;
gap: 20px;
align-items: center;
}
.header-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 30px;
}
.header-content.left {
grid-column: 1;
}
.signup {
background-color: #3882f6;
color: #f9faf8;
border-color: #3882f6;
font-size: 15px;
margin-top: 10px;
padding: 8px 15px;
border-radius: 0.2cm;
cursor: pointer;
}
.right img {
width: 100%;
height: 100%;
object-fit: cover;
}
.information-section {
padding: 30px 150px;
justify-items: center;
margin-bottom: 50px;
}
.info {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 30px;
padding: 30px 0;
}
.info-item legend {
width: 150px;
text-align: center;
}
.info-img {
height: 150px;
width: 150px;
border-radius: 0.2cm;
object-fit: cover;
}
.quote-section {
padding: 110px 200px;
background-color: #e5e7eb;
}
.autor {
font-size: 20px;
font-weight: 800;
margin-top: 20px;
justify-self: end;
}
.signup-section {
background-color: #3882f6;
color: #f9faf8;
padding: 50px 150px;
margin: 100px 0 100px;
display: flex;
justify-content: space-between;
align-items: center;
}
.signup-section button {
border-color: white;
}
.footer {
background-color: #1f2937;
color: #e5e7eb;
padding: 30px;
text-align: center;
}