-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
102 lines (91 loc) · 1.58 KB
/
styles.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
body {
font-family: Arial, sans-serif;
background-color: #25d366;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.container {
border: solid 2px seagreen;
background-color: #fff;
border-radius: 10px;
padding: 20px;
width: 300px;
margin: 0 auto;
}
input[type="text"] {
color: black;
width: 100%;
outline: none;
height: 40px;
margin-bottom: 5px;
}
textarea {
width: 286px;
height: 40px;
margin-bottom: 10px;
color: black;
outline: none;
}
.text-link {
display: flex;
align-items: center;
justify-content: center;
height: 53px;
width: 307px;
border: solid 1px grey;
border-radius: 2px;
margin-bottom: 10px;
}
.text-link p {
color: dimgrey;
font-size: 15px;
}
button {
background-color: #25d366;
color: #fff;
border: none;
padding: 10px 20px;
margin-bottom: 10px;
border-radius: 5px;
cursor: pointer;
transition: transform 0.2s ease-in-out;
}
button:active {
transform: scale(0.95);
}
@media (max-width: 1280px) {
.container {
border: solid 2px seagreen;
background-color: #fff;
border-radius: 10px;
padding: 20px;
width: 300px;
margin: 0 auto;
}
input[type="text"] {
width: 100%;
height: 40px;
margin-bottom: 5px;
outline: none;
color: black;
}
textarea {
width: 286px;
padding: 10px;
margin-bottom: 10px;
outline: none;
color: black;
}
button {
background-color: #25d366;
color: #fff;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
}
}