-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
68 lines (61 loc) · 1.18 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
@font-face {
font-family: ggSans;
src: url(./ggsans.ttf);
}
*{
font-family: ggSans;
padding: 0;
margin: 0;
}
body{
background-color: #7289DA;
}
header {
text-align: center;
width: 100%;
margin: 0;
padding: 0;
height: 200px;
background-color: #8a99d1b1;
color: #fff;
display: flex;
justify-content: center;
align-items: center;
border-radius: 0 0 20px 20px;
border-bottom: 3px solid #5474e8;
}
h1{
font-size: 50px;
padding: 0;
margin: 0;
}
#buttons {
margin: 10px;
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 20px;
}
button {
padding: 10px;
font-size: 16px;
background-color: #8a99d1b1;
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
margin-right: 10px;
border: 3px solid #5474e8;
}
textarea {
background-color: #8a99d1b1;
height: 600px;
width: 400px;
display: block;
margin: 0 auto;
padding: 10px;
font-size: 16px;
border-radius: 4px;
border: 3px solid #5474e8;
resize: none;
}