-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
86 lines (72 loc) · 1.41 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
/* CSS for Library App Page 1 */
html {
background-color: #3f3b51;
font-family: 'Quicksand', sans-serif;
}
body {
display: flex;
justify-content: center;
margin: 20px;
}
a {
text-decoration: none;
}
.container-div {
align-self: center;
width: 568px;
height: 924px;
border-radius:40px;
background-color: #231f20;
display: flex;
justify-content: center;
padding: 20px 70px;
box-shadow: 5px 20px 25px #00000050;
}
.welcome-page {
display: flex;
flex-direction: column;
justify-content: center;
}
.welcome-img-div {
display: flex;
justify-content: center;
margin-bottom: 100px;
}
.welcome-img-div img{
width: 300px;
}
h1 {
color: rgb(255, 250, 219);
text-align: center;
font-size: 40px;
}
p {
color: rgba(255, 250, 219, 0.548);
text-align: center;
line-height: 20px;
font-size: 14px;
}
.get-started-div {
display: flex;
justify-content: center;
margin-top: 50px;
}
#get-started-button {
font-family: 'Quicksand', sans-serif;
border: none;
border-radius: 40px;
background-color: rgb(241, 172, 76);
padding: 15px 30px 15px 30px;
font-size: 18px;
font-weight: 400;
color: rgb(22, 22, 22);
}
#get-started-button:hover {
background-color: rgb(255, 203, 131);
}
@media only screen and (max-width: 500px) {
.container-div {
width: 60vw;
height: 90vh;
}
}