-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
105 lines (89 loc) · 1.5 KB
/
styles.css
File metadata and controls
105 lines (89 loc) · 1.5 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #fff;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 2rem 5rem;
color: #191919;
}
.logoname {
font-size: 1.5rem;
font-weight: bold;
gap: 0.5rem;
}
span {
color: #FF6A70;
}
nav div {
display: flex;
align-items: center;
}
button {
margin-left: 1rem;
padding: 0.5rem 2rem;
border: none;
filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.2));
border-radius: 5px;
cursor: pointer;
font-size: 1rem;
}
.login_btn {
background-color: #FFE1D7;
color: #FF6A70;
}
.sign_btn {
background-color: #FF6A70;
color: white;
}
button:hover {
background-color: #fff;
color: #FF6A70;
}
.bg {
width: 40%;
height: auto;
margin-top: -100px;
}
.content {
display: flex;
align-items: flex-start;
margin-top: 150px;
margin-left: 150px;
}
.text-container {
display: flex;
flex-direction: column;
margin-left: 50px;
margin-top: 50px;
}
p {
margin: 0;
font-size: 58px;
font-weight: bold;
}
.p_con {
font-size: 15px;
font-weight: 400;
margin: 10px 0 0 0;
}
.btn_start {
margin-top: 20px; /* Space above the button */
margin-left: -10px;
}
.start_btn {
background-color: #FF6A70;
color: #fff;
padding: 1rem 2rem;
border-radius: 5px;
border: none;
cursor: pointer;
font-size: 1rem;
}