-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
104 lines (82 loc) · 1.81 KB
/
style.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans&display=swap');
* {
margin : 0;
padding : 0;
box-sizing : border-box;
overflow : hidden;
font-family: 'Josefin Sans', sans-serif;
}
body {
background-color: rgb(20, 200, 206);
width : 100%;
height : 1200px;
}
.container {
position : relative;
border : 2px solid #ffffffec;
background-color: #ffffff;
width : 430px;
height : 480px;
left : 450px;
top : 70px;
box-shadow : 0 30px 60px 0 #55525285;
border-radius : 18px;
text-align : center;
}
form {
position: relative;
top : 100px;
}
.inputs {
padding: 20px 5px 0px 20px;
}
input {
padding : 8px 5px;
margin : 10px 0px;
width : 320px;
border-style : none;
border-bottom: 2px solid #000000a6;
position : relative;
right : 5px;
}
input:focus::placeholder {
visibility: hidden;
}
input:focus {
outline: none;
}
input::placeholder {
font-size: 14px;
opacity : 1.2;
position : relative;
left : 2px;
}
.buttons {
margin: 5px 5px 20px 20px;
}
.buttons button {
width : 132px;
padding : 8px 0px;
position : relative;
right : 98px;
border-style : none;
border-radius : 5px;
background-color: #00ffff;
font-size : 15px;
color : #000000da;
font-weight : bold;
border : 3px solid #00000017;
}
.buttons button:hover {
color : black;
background-color: #0ccece;
}
.links {
padding: 10px 0px;
}
.links a {
margin : 8px 5px;
text-decoration: none;
font-size : 16px;
opacity : .8;
}