-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
92 lines (80 loc) · 1.45 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
89
90
91
92
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
}
.title {
position: fixed;
top: 10px;
left: 10px;
}
form {
background: #111;
padding: 10px;
border-radius: 7px;
box-shadow: 0 0 7px #000;
}
form div {
width: 250px;
display: flex;
justify-content: space-between;
margin-bottom: 10px;
}
form label {
color: #fff;
font-size: 20px;
}
form textarea, form input {
width: 150px;
padding: 7px;
outline: none;
border-radius: 2px;
border: 2px solid #fff;
transition: border .5s ease;
}
form textarea:focus, form input:focus {
border: 2px solid #111;
}
form button {
padding: 7px;
border: none;
outline: none;
cursor: pointer;
border-radius: 3px;
background: #2b3083;
color: #fff;
transition: all .5s ease;
}
form button:hover, form button:focus {
opacity: 0.7;
}
form textarea {
resize: vertical;
min-height: 50px;
max-height: 100px;
}
.alertCont {
width: 100vw;
height: 100vh;
top: 0;
left: -100vw;
position: fixed;
background: rgba(0, 0, 0, 0.575);
display: flex;
align-items: center;
justify-content: center;
transition: all .5s ease;
}
.alert {
padding: 10px;
background: #111;
border-radius: 2px;
color: #fff;
}