-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
148 lines (147 loc) · 2.64 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
body {
/* height: 100vh; */
margin: 0;
/* overflow: hidden; */
font-family: Roboto, sans-serif;
display: flex;
flex-direction: column;
}
.header, .footer {
display: flex;
background-color: #1f2937;
}
img.logo {
width: 100px;
height: 100px;
align-self: center;
}
.header{
flex-direction: column;
justify-content: space-between;
padding: 100px;
padding-top: 10px;
}
.head-content {
display: flex;
gap: 10px;
flex: 1;
}
.hero {
font: 800 48px sans-serif;
color: #F9FAF8;
}
.head-content .text {
font-size: 18px;
color: #E5E7EB;
margin-bottom: 5px;
}
.header-top {
display: flex;
justify-content: space-between;
margin-bottom: 50px;
}
ul {
display: flex;
gap: 16px;
list-style: none;
}
a {
text-decoration: none;
color: rgb(208, 207, 207);
}
img.main {
width: 100%;
max-width: 800px;
max-height: 300px;
height: auto;
}
button {
background-color: #3882F6;
border: none;
border-radius: 8px;
color: white;
padding: 8px 20px;
font-weight: 600;
cursor: pointer;
}
.main-content {
display: flex;
flex-direction: column;
justify-content: center;
margin: 20px;
}
.title {
font: 800 36px sans-serif;
color: #1F2937;
align-self: center;
}
.middle-content {
display: flex;
justify-content: space-between;
gap: 40px;
padding: 50px 100px;
flex-wrap: wrap;
}
.pair {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
flex: 1 1 0px;
}
.pair .text {
color: rgb(154, 153, 153);
font-size: 18px;
margin-bottom: 5px;
}
img.icon {
width: 100px;
height: 100px;
}
.quote {
display: flex;
flex-direction: column;
background-color: #E5E7EB;
font: 300 36px sans-serif;
font-style: italic;
color: #1f2937;
align-items: flex-end;
padding: 100px;
}
.author {
margin-right: 80px;
font: 800 25px Serif;
}
.modal {
background: #3882F6;
width: 500px;
border-radius: 10px;
color: #E5E7EB;
box-shadow: 2px 4px 16px rgba(0, 0, 0, 0.2);
display: flex;
gap: 16px;
padding: 40px;
align-self: center;
margin: 40px;
}
.modal-content {
display: flex;
flex-direction: column;
flex-wrap: wrap;
flex-shrink: 1;
}
.modal-head {
font: 800 25px sans-serif;
}
.modal-button{
width: 100px;
height: 30px;
align-self: center;
cursor: pointer;
border: 1px solid white;
}
.footer {
justify-content: center;
color: white;
padding: 20px;
}