-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgetintouchstyle.css
82 lines (76 loc) · 1.52 KB
/
getintouchstyle.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
body {
background-color: #cccccc;
background-image: linear-gradient(230deg, #FFEDE4, #FAFFDE, #D5D0D6, #FFEDE4);
font-family: Playfair Display;
height: 100%;
}
.ulnavbar {
list-style: none;
display: flex;
margin: 0;
padding: 1em;
justify-content: space-evenly;
background-image: linear-gradient(90deg, rgba(128, 0, 128, 0.486), rgba(255, 255, 0, 0.445), rgba(255, 192, 203, 0.5), rgba(0, 217, 255, 0.39), rgba(2, 228, 2, 0.425));
}
.navbar{
font-size: 20px;
color: rgb(250, 127, 26);
}
.navbar:hover {
text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
section {
display: grid;
grid-template-rows: 1fr 2fr;
justify-content: center;
margin-top: 100px;
letter-spacing: 1px;
}
.topheader {
display: flex;
flex-direction: column;
text-align: center;
}
h1 {
font-size: 50px;
margin-bottom: 15px;
color: #474049;
font-weight: lighter;
}
p {
font-size: 20px;
color: #764046;
font-weight: lighter;
}
.box {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr 1fr 3fr 3fr;
}
.namediv, .maildiv, .msgdiv {
grid-column: 1/3;
}
.name, .mail, .msg {
width: 100%;
}
.msgdiv{
margin-top: 20px;
}
textarea {
height: 100px;
}
label {
margin-bottom: 1em;
}
.submit, .reset {
text-align: center;
}
button {
margin-top: 0;
padding: 1em;
width: 150px;
background-color: rgba(255, 192, 203, 0.473);
font-size: 14px;
font-style: oblique;
cursor: pointer;
}