-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
119 lines (102 loc) · 1.91 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
/* @import url("https://fonts.googleapis.com/css2?family=Muli&display=swap"); */
@import url("https://fonts.googleapis.com/css2?family=Afacad:wght@500;600;700&display=swap");
* {
box-sizing: border-box;
}
body {
font-family: "Afacad", sans-serif;
background-color: #fffffe;
color: #0d0d0d;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin-top: 50px !important;
overflow: hidden;
margin: 0;
}
.container {
background-color: #eff0f3;
padding: 20px 40px;
border-radius: 5px;
}
.container h1 {
color: #d9376e;
text-align: center;
margin-bottom: 30px;
}
.container a {
text-decoration: none;
color: #d9376e;
}
.btn {
cursor: pointer;
display: inline-block;
width: 100%;
background: #d9376e;
padding: 15px;
color: white;
font-family: inherit;
font-size: 16px;
border: 0;
border-radius: 5px;
}
input {
font-family: "Afacad", sans-serif;
}
.btn:focus {
outline: 0;
}
.btn:active {
transform: scale(0.98);
}
.text {
margin-top: 30px;
}
.form-control {
position: relative;
margin: 20px 0 40px;
width: 300px;
}
.form-control input {
background-color: transparent;
border: 0;
border-bottom: 2px #fff solid;
display: block;
width: 100%;
padding: 15px 0;
font-size: 18px;
color: #000;
}
.form-control input:focus,
.form-control input:valid {
outline: 0;
border-bottom-color: #d9376e;
}
.form-control label {
position: absolute;
top: 15px;
left: 0;
pointer-events: none;
}
.form-control label span {
display: inline-block;
font-size: 18px;
min-width: 5px;
transition: 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.form-control input:focus + label span,
.form-control input:valid + label span {
color: #d9376e;
transform: translateY(-30px);
}
.portfolio_link {
text-decoration: none;
color: #d9376e;
font-weight: bold;
letter-spacing: 1px;
}
footer {
margin-top: 120px;
}