-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
139 lines (124 loc) · 2.31 KB
/
style.css
File metadata and controls
139 lines (124 loc) · 2.31 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
@import url('https://fonts.googleapis.com/css?family=Raleway:300,400,700');
@import url("https://fonts.googleapis.com/css?family=Montserrat&display=swap");
* {
box-sizing: border-box;
}
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin: 0;
min-height: 100vh;
font-family: 'Montserrat', sans-serif;
background: rgb(2, 0, 36);
background: linear-gradient(
90deg,
rgba(2, 0, 36, 1) 0%,
rgba(6, 215, 152, 1) 0%,
rgba(135, 219, 213, 1) 30%,
rgba(32, 204, 158, 1) 70%
);
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 50px 100px;
background-color: #f2f2f2;
border-radius: 5px;
width: 25em;
height: 40em;
}
.items {
display: flex;
flex-direction: column;
}
.items input {
margin-bottom: 30px;
padding: 2px 0px;
padding-bottom: 5px;
width: 250px;
background-color: transparent;
border: none;
outline: none;
border-bottom: 1.5px solid;
border-bottom-color: grey;
font-weight: 400;
color: #585858;
opacity: 0.55;
font-size:16px;
}
#title {
margin-bottom: 30px;
letter-spacing: 5px;
text-align: center;
opacity: 0.5;
}
#button {
padding: 20px 30px;
margin-top: 30px;
outline: none;
border: none;
font-size: medium;
font-weight: 600;
letter-spacing: 5px;
border-radius: 5px;
cursor: pointer;
background: linear-gradient(
90deg,
rgba(2, 0, 36, 1) 0%,
rgba(6, 215, 152, 1) 0%,
rgba(32, 204, 158, 1) 30%,
rgba(135, 219, 213, 1) 70%
);
color: grey;
}
#button:active {
transform: translateY(2px);
}
#button text {
opacity: 0.5;
}
#sign {
margin-top: 4em;
text-align: center;
letter-spacing: 5px;
cursor: pointer;
color: rgb(11, 194, 142);
font-weight: bolder;
text-decoration: none;
}
#sign:active {
transform: translateY(2px);
}
::placeholder {
color: grey;
text-align: center;
letter-spacing: 2px;
}
a,
input:focus,
select:focus,
textarea:focus,
button:focus {
outline: none;
}
textarea
{
resize:none;
margin-bottom: 3px;
padding: 10px 5px;
width: 250px;
background-color: transparent;
border: none;
outline: none;
border-bottom: 1.5px solid;
border-bottom-color: grey;
font-weight: 400;
color: #585858;
opacity: 0.55;
font-size:16px;
text-align:center;
}