forked from BraveCoderYT/PHP-Comment-System
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
88 lines (79 loc) · 1.62 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
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
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
background: #222222;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
font-family: 'Roboto', sans-serif;
}
.wrapper {
background: white;
border-radius: 10px;
width: 500px;
height: 300px;
display: flex;
justify-content: center;
align-items: center;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
.wrapper .form input {
background: #222222;
color: white;
font-size: 15px;
width: 450px;
border-radius: 20px;
padding: 10px;
border: none;
outline: none;
margin-bottom: 10px;
margin-top: 20px;
}
.wrapper .form textarea {
background: #222222;
color: white;
font-size: 15px;
width: 450px;
border-radius: 20px;
padding: 10px;
border: none;
outline: none;
resize: none;
}
.wrapper .form .btn {
background: #222222;
color: white;
font-size: 15px;
border: none;
outline: none;
cursor: pointer;
padding: 10px;
width: 200px;
border-radius: 20px;
margin: 0 auto;
display: block;
margin-top: 5px;
margin-bottom: 20px;
opacity: 0.8;
transition: 0.3s all ease;
}
.wrapper .form .btn:hover {
opacity: 1;
}
.content {
text-align: center;
background: royalblue;
color: white;
padding: 10px;
width: 500px;
border-radius: 10px;
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.content p {
margin-bottom: 15px;
width: 450px;
}