-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
58 lines (48 loc) · 1.04 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
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Montserrat', sans-serif;
background-image: url('depositphotos_57713651-stock-illustration-graph-paper-grid-background.jpg');
background-position: 0 0;
background-repeat: repeat;
}
.contaier {
max-width: 1400px;
width: 95%;
margin: 0 auto;
text-align: center;
}
.contaier h1 {
margin-top: 50px;
margin-bottom: 30px;
color: #000;
text-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
}
.contaier textarea {
padding: 30px;
margin-bottom: 50px;
width: 70%;
height: 70vh;
font-size: 14px;
text-align: center;
outline: none;
resize: none;
border-radius: 10px;
box-shadow: 5px 5px 15px 3px rgba(0, 0, 0, 0.3);
}
.contaier textarea::placeholder {
font-family: 'Montserrat', sans-serif;
}
.contaier a {
margin-right: 30px;
color: #000;
background-color: #fff;
border-radius: 10px;
}
.contaier div:first-of-type {
margin-bottom: 30px;
}