-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
60 lines (53 loc) · 1.32 KB
/
main.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
.indextitel{
color: rgb(105, 7, 97);
text-align: center;
font-size: 45px;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;}
.nav{
display: block;
padding: 8px;
background-color: #0e0000;
float: left;
color: rgb(255, 255, 255);
text-align: center;
}
.hometitel{
text-align: center;
}
.youtube{
margin-left: 55vw;
transform: translate(-50%);
}
.contacttitel{
text-align: center;
}
.pindex{
text-align-last: center;
color: magenta;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
font-style: inherit;
font-size: 22px;
}
.form{
border-radius: 5px;
background-color: #f2f2f2;
padding: 20px;
}
.input{
width: 100%; /* Full width */
padding: 12px; /* Some padding */
border: 1px solid #ccc; /* Gray border */
border-radius: 4px; /* Rounded borders */
box-sizing: border-box; /* Make sure that padding and width stays in place */
margin-top: 6px; /* Add a top margin */
margin-bottom: 16px; /* Bottom margin */
resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}
.submit{
background-color: mediumvioletred;
color: snow;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
}