blob: 67ef101de21c7873784bbaf0c4138f51adffac57 (
plain)
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
|
body {
display: block;
margin: auto;
padding: 5px;
/* color: #e6d5d5; */
position: absolute;
top: 5vh;
bottom: 5vh;
left: 10vw;
right: 10vw;
}
h1 {
text-align: left;
}
p {
text-align: justify;
}
div {
margin: auto;
padding: 10px;
}
#contact {
/* background-color: #443644; */
/*! border-radius: 0; */
border-style: dashed;
border-width: 3px;
border-color: #276a4b;
}
label {
width: 100%;
}
input {
width: 100%;
border: 0px;
border-radius: 5px;
}
.sub-input{
border-radius: 0px;
border-width: 1px;
border-style: solid;
border-color: #7ef07e;
padding: 1.1%;
background: #1a1a1a;
color: #7ef07e;
text-align: center;
padding: 1% 0 1% 0;
}
textarea {
width: 100%;
border: 0px;
border-radius: 5px;
height: 100px;
}
.row .large-12 .small-12 {
width: 100%;
display: inline-grid;
}
.large-6 .small-6 {
width: 50%;
display: inline-flex;
}
.success {
background-color: green;
color: white;
}
.alert {
background-color: red;
color: black;
}
.button {
border: 0px;
padding: 7px;
color: white;
}
footer {
position: absolute;
right: 0;
bottom: 0;
padding: 2px;
text-align: right;
}
|