-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.css
69 lines (61 loc) · 1.25 KB
/
home.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: url(840294-wallpaper-of-study.jpg) no-repeat;
background-size: cover;
background-position: center;
}
.wrapper {
width: 820px;
height:280px;
background: transparent;
border: 2px solid rgba(255, 255, 255, .5);
backdrop-filter: blur(25px);
color: #fff;
border-radius: 12px;
padding: 30px 40px;
}
.wrapper h1 {
font-size: 36px;
text-align: center;
}
.button-container {
display: flex;
justify-content:space-around;
margin-top: 60px;
}
.big-button {
width: 230px;
height: 50px;
background-color: #fff;
border: none;
border-radius: 25px;
cursor: pointer;
font-size: 18px;
color: #333;
font-weight: bold;
}
.big-button:hover {
background-color: #ddd;
}
.wrapper .register-link{
font-size: 14.5px;
text-align: center;
margin: 30px 0 15px;
}
.register-link p a{
color: #fff;
text-decoration: none;
font-weight: 600;
}
.register-link p a:hover{
text-decoration: underline;
}