-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
97 lines (89 loc) · 1.46 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
body{
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
display:flex;
flex-direction: column;
}
.header{
display:flex;
justify-content: space-around;
}
.header-logo{
align-self: center;
font-size:30px;
font-weight:bold;
}
ul{
display:flex;
text-decoration: none;
font-size:18px;
gap:16px;
flex-shrink: 0;
}
li{
list-style-type:none;
}
a{
color: #e5e7eb;;
text-decoration: none;
}
.hero{
background-color:#1f2937;
}
.subtext{
color: #e5e7eb;;
font-size:18px;
font-weight:400;
}
.maintext{
color:#F9FAF8;
font-size:48px;
font-weight: 800;
}
.h2{
display:flex;
justify-content: center;
gap: 50px;
padding-top: 75px;
}
.webinfo{
max-width: 500px;
}
.sign1{
background-color: blue; /* Green */
border: none;
color: white;
padding: 10px 32px;
text-align: center;
font-size: 16px;
border-radius: 8px;
}
.middle{
display:flex;
justify-content: center;
text-align: center;
gap:30px;
flex-direction: column;
}
.bigtext{
font-weight: 800;
font-size: 36px;
color: #1f2937;
}
.infobox{
display:flex;
flex-direction: row;
justify-content: center;
gap: 50px;
}
.quotebox{
display:flex;
flex-direction: column;
align-items: center;
flex-wrap: wrap;
}
.quote{
max-width: 500px;
}
.author{
align-self: flex-end;
}