-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
97 lines (84 loc) · 1.53 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
93
94
95
96
97
body {
padding: 0;
margin: 0;
display: flex;
justify-content: center;
box-sizing: border-box;
}
#wrapper {
width: 700px;
height: 300px;
margin-top: 10%;
background-color: #30475e;
box-shadow: 10px 10px #888888;
display: flex;
flex-direction: column;
padding: 20px;
}
#main {
width: 700px;
height: 70%;
display: flex;
flex-direction: column;
justify-content: center;
color: #00af91;
}
#text-area {
width: 100%;
height: auto;
display: inline-flex;
justify-content: center;
font-family: "Sriracha", cursive;
font-size: 30px;
}
#author-area {
width: 100%;
height: auto;
margin-top: 10px;
display: inline-flex;
justify-content: flex-end;
font-family: "Sriracha", cursive;
font-size: 20px;
}
#btn-area {
width: 100%;
height: 50px;
margin-top: 10px;
display: inline-flex;
justify-content: center;
position: relative;
top: 15%;
}
#btn1 {
border-radius: 100%;
width: 40px;
height: 40px;
outline: none;
border: none;
position: relative;
font-weight: 700;
font-size: 25px;
background-color: #2f3640;
color: tomato;
}
#btn2 {
border-radius: 100%;
width: 40px;
height: 40px;
outline: none;
border: none;
position: relative;
font-weight: 700;
font-size: 25px;
margin-left: 20px;
background-color: #2f3640;
color: tomato;
}
#btn1:hover {
border: 2px solid tomato;
cursor: pointer;
}
#btn2:hover {
border: 2px solid tomato;
cursor: pointer;
}