-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
58 lines (53 loc) · 1.43 KB
/
style.css
File metadata and controls
58 lines (53 loc) · 1.43 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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;1,100&display=swap');
body{
background-image: url(https://media.istockphoto.com/id/1454707439/photo/scattered-question-marks-blocks-and-copy-space.webp?b=1&s=170667a&w=0&k=20&c=yIq5os34TiPkP73f4D1KwRWC_r86-vYe0ikuaWHv_OU=);
/* background-image: url(istockphoto-1454707439-170667a.webp); */
/* background: #e3edf7; */
background-repeat: no-repeat;
background-size: cover;
overflow: hidden;
font-family: 'Roboto', sans-serif;
}
.main{
width: 100%;
height: 100vh;
color: rgba(255, 255, 255, 0.768);
display: flex;
margin-left: 25px;
/* justify-content: center; */
align-items: center;
}
.title{
color:rgb(32, 30, 70);
margin: 10px;
}
#container{
border-top-right-radius: 40px;
border-bottom-left-radius: 40px;
width: 40%;
height: 400px;
padding: 15px;
box-shadow: 10px 10px 10px -1px #04364A,
-10px -10px 10px -1px #76cff8;
/* box-shadow: 5px 5px 15px rgb(24, 23, 23); */
background: linear-gradient(50deg,#2fa4db,#04364A) ;
}
.row{
width:100%;
margin: 2rem;
margin-left: 20px;
}
.btn{
width: 100%;
padding: 5px;
font-size: 20px;
color: rgb(176, 176, 181);
border: none;
border-radius: 5px;
background-color: #1F4172;
}