-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
144 lines (122 loc) · 2.21 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
body{
display: flex;
flex-direction: column;
font-family: Roboto, sans-serif;;
}
a {
text-decoration: none;
color: #e5e7eb;
font-weight: lighter;
margin: 8px;
}
.header, .footer {
background-color: #1F2937;
font-size: 18px;
color: #e5e7eb;
display: flex;
align-items: center;
height: 48px;
justify-content: space-between;
padding: 16px 144px;
}
.footer {
justify-content: center;
}
.header-logo {
font-size: 24px;
color: #F9FAF8;
font-weight: bold;
}
.intro {
background-color: #1F2937;
font-size: 18px;
color: #e5e7eb;
display: flex;
padding: 128px 144px;
gap: 120px
}
.intro-header {
color: #F9FAF8;
font-size:48px;
font-weight: bolder;
}
.left-intro {
max-width: 40%;
}
.right-intro {
background-color: gray;
width: 800px;
display: flex;
justify-content: center;
align-items: center;
}
button {
background-color: #3882F6;
color: #e5e7eb;
font-size: 18px;
font-weight: bold;
border: 0;
border-radius: 8px;
padding: 8px 32px;
cursor: pointer;
margin-top: 8px;
}
.info {
display: flex;
flex-direction: column;
align-items: center;
color: #1F2937;
padding: 48px;
}
.info-header {
font-size: 36px;
font-weight: bolder;
}
.info-box-set {
display: flex;
justify-content: center;
gap: 50px;
padding: 60px 230px;
width: 150px;
text-align: center;
}
#info-img {
border-radius: 12px;
border: 4px solid #3882F6 ;
width: 150px;
height: 150px;
}
.quote {
background-color: #e5e7eb;
font-style:italic;
font-size: 36px;
font-weight: lighter;
color: #1F2937;
padding: 128px 312px;
}
.quote-author {
font-size: 24px;
font-style: normal;
font-weight: bold;
justify-content: end;
display: flex;
}
.sign-up {
background-color:#3882F6;
border-radius: 10px;
margin: 100px 200px;
padding: 48px 100px;
color:#F9FAF8;
font-size: 24px;
font-weight: bold;
display: flex;
justify-content: space-between;
align-items: center;
}
.sign-details {
font-size: 18px;
font-weight: normal;
}
#sign-up {
border: 2px solid #F9FAF8;
}