-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
179 lines (155 loc) · 2.75 KB
/
styles.css
File metadata and controls
179 lines (155 loc) · 2.75 KB
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
body{
font-family:Helvetica, sans-serif;
display:flex;
flex-direction:column; /*for footer and header to be aligned*/
padding:0;
margin:0;
box-sizing:border-box;
}
.header p{
font-size:24px;
font-weight:bold;
color:#f9faf8;
margin:0;
padding:0; /*to align visual novels and the links on the same line*/
}
ul{
list-style-type:none;
margin:0;
padding:0;
display:flex;
}
.header ul{
gap:15px;
}
a{
text-decoration:none;
color:#e5e7eb;
font-size:18px;
}
.header{
display:flex;
justify-content:space-between; /*align the links*/
padding: 15px 100px 15px 100px;
background-color:#1F2937;
margin:0;
}
.content{
flex:1 1 auto; /*to align the header and footer properly this is required*/
}
.content1{
display:flex;
color:#e5e7eb;
font-size:18px;
padding:85px 100px 85px 100px;
gap:30px;
background-color:#1F2937;
margin:0;
flex-shrink:1;
}
#maintext1{
color:#f9faf8;
font-size:48px;
font-weight:800;
margin:0;
padding:0;
}
.write1{
display:flex;
flex-flow:column wrap;
align-items:flex-start;
}
.signup{
width:120px;
height:30px;
background-color:#3882F6;
padding:5px 15px;
border-radius:7px;
border:none;
font-size:15px;
color:#f9faf8;
font-weight:600;
margin:0;
}
.content2{
padding:50px 100px 100px 100px;
margin:0;
flex-shrink:1;
}
#maintext2{
font-size:36px;
font-weight:800;
color:#1F2937;
text-align:center;
margin:0 0 30px 0;
}
.info img{
width:200px;
height:200px;
border:4px solid #3882F6;
border-radius:10px;
flex-shrink:1;
}
.info{
display:flex;
flex-direction:column;
gap:10px;
justify-content:center;
color:#8c929e;
font-size:18px;
text-align:center;
align-items:center;
}
.content2 ul{
gap:20px;
}
.content3{
margin:0;
background-color:#e5e7eb;
color:#1f2937;
font-size:36px;
font-style:italic;
font-weight:lighter;
padding:70px 200px;
}
#maintext3{
color:black;
font-style:normal;
font-size:20px;
text-align:right;
font-weight:bold;
}
.content4{
background-color:#3882F6;
display:flex;
justify-content:space-around;
align-items:center;
margin:70px auto;
padding:30px 50px;
width:800px;
height:50px;
border-radius:8px;
}
.content4 .signup{
border:solid white 1.5px;
padding:5px 15px 5px 15px;
margin-top:7px;
}
.write2{
color:white;
font-weight:bold;
margin:0;
padding:0;
}
.write2 div{
font-weight:normal;
margin-top:5px;
font-size:15px;
}
.footer{
margin:0;
background-color:#1f2937;
color:white;
padding:30px;
text-align:center;
}