-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
124 lines (124 loc) · 2.18 KB
/
styles.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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Times New Roman', Times, serif;
}
.header{
display: flex;
background-color: #F9faf8;
font-size: 18px;
justify-content: space-around;
background-color: #1f2937;
}
.header > ul{
display: flex;
list-style-type: none;
gap: 26px;
align-items: center;
}
.header ul li a{
text-decoration: none;
color: #F9faf8;
}
.hero{
display: flex;
justify-content: space-around;
background-color: #1f2937;
padding: 50px;
align-items: center;
}
.heroone{
display: flex;
flex-direction: column;
align-items: flex-start;
align-content: space-around;
width: 300px;
padding: 16px;
color: #F9faf8;
}
.btn{
margin-top: 8px;
padding: 7px;
border-radius: 5px;
background-color: #3882f6;
color: #F9faf8;
border: 2px solid #3882f6;
}
.mid{
display:flex;
flex-direction: column;
background-color: #F9faf8;
padding: 46px;
align-items: center;
}
.mid > h2{
font-weight: 900;
font-size: 36px;
margin-bottom: 16px;
}
.box{
height: 100px;
width: 100px;
border: 2px solid #3882f6;
border-radius: 12px;
}
.midpart{
display: flex;
}
.bigbox{
gap: 16px;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
padding: 16px;
width: 215px;
color: #1f2937;
}
.quote{
background-color: #dbdbdb;
font-size: 36px;
font-style: italic;
color: #1f2937;
padding: 100px;
display: flex;
justify-content: center;
}
blockquote{
display: flex;
flex-direction: column;
align-items: flex-end;
}
.secondlast{
padding: 70px;
display: flex;
justify-content: center;
}
.calltoaction{
background-color: #3882f6;
border-radius: 12px;
padding: 40px;
width: 60%;
}
.action{
display: flex;
justify-content: space-between;
}
button{
background-color: #3882f6;
padding: 10px 16px;
border-radius: 7px;
border:2px solid #F9faf8;
color: #F9faf8;
}
.signup{
color: #F9faf8;
}
.footer{
background-color: #1f2937;
display: flex;
justify-content: center;
color: #F9faf8;
padding: 40px;
}