forked from AndyLow14/The-Professionals-Portfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.css
119 lines (103 loc) · 1.72 KB
/
contact.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
@font-face {
font-family: Cozette;
src: url(CozetteVector.ttf);
}
:root {
--black: #121212;
--pink: #ee959e;
--blue: #7f8de2;
--green: #c1fcf6;
}
html * {
font-family: Cozette;
}
i {
font-size: 50px;
color: #121212;
margin-left: 20px;
transition: all 0.3s ease;
}
i:hover {
color: pink;
}
.head {
display: flex;
align-items: center;
background-image: linear-gradient(
to right top,
#d16ba5,
#c777b9,
#ba83ca,
#aa8fd8,
#9a9ae1,
#8aa7ec,
#79b3f4,
#69bff8,
#52cffe,
#41dfff,
#46eefa,
#5ffbf1
);
border-bottom: solid 5px;
}
.profile-title {
font-size: 72px;
font-weight: bold;
color: black;
padding: 10px 30px 0px 20px;
margin-bottom: 0px;
}
.card {
border: solid 4px #121212;
border-radius: 20px;
box-shadow: 12px 12px #555555;
margin: 40px 40px 40px 40px;
}
.flexbox-cloud {
display: flex;
width: 100%;
align-items: center;
justify-content: space-around;
}
.cloud {
width: 300px
}
.flexbox-horizontal {
display: flex;
justify-content: space-evenly;
margin: 20px 50px 0px 50px;
}
.sprite {
width: 200px;
}
.field-body {
margin-right: 10%;
}
.input,
.textarea {
border: solid 3px #121212;
border-radius: 8px;
}
button {
font-family: Cozette;
background-color: var(--pink);
border: solid 3px black;
border-radius: 10px;
padding: 20px 10px 20px 10px;
margin: 10px 20px 10px 0px;
transition: all 0.3s ease;
box-shadow: 7px 7px var(--black);
font-size: 24px;
width: 180px;
height: 70px;
}
button:hover {
background-color: var(--black);
color: white;
border: solid var(--black);
font-size: 18px;
}
button:active {
box-shadow: 0px 0px var(--pink);
transform: translateX(7px) translateY(7px);
}