-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
110 lines (96 loc) · 1.88 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
98
99
100
101
102
103
104
105
106
107
108
109
110
ul {
list-style: none;
}
a {
color: rgb(64, 64, 64);
font-weight: 600;
text-decoration: none;
}
h1 {
margin-bottom: 0;
}
a:hover {
color: rgb(32, 32, 32);
font-weight: 800;
}
.dflex {
display: flex;
flex-direction: row;
gap: 2rem;
}
.dcenter {
display: flex;
flex-direction: column;
align-items: center;
}
#titleName {
display: flex;
padding-left: 1.6rem;
padding-right: 1.6rem;
justify-content: space-between;
align-items: center;
height: 60px;
background-color: rgb(202, 202, 202);
color: rgb(46, 46, 46);
border-radius: 3px;
}
#input-text {
width: 100%;
height: 150px;
font-size: 20px;
padding: 10px;
margin-bottom: 20px;
border: 1px solid brown;
border-radius: 16px;
}
#bold-button {
font-size: 20px;
padding-top: 10px;
padding-bottom: 10px;
padding-left: 2rem;
padding-right: 2rem;
background: rgba(251, 97, 97, 0.28);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
border: 1px solid rgba(251, 97, 97, 0.3);
color: rgb(64, 64, 64);
}
#output-text {
font-size: 20px;
font-family: monospace;
}
.outputBG {
background-color: bisque;
min-height: 100px;
border: 1px solid brown;
padding: 10px;
border-radius: 16px;
}
body {
background: #ffefba; /* fallback for old browsers */
background: -webkit-linear-gradient(
to right,
#ffffff,
#ffefba
); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(
to right,
#ffffff,
#ffefba
); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.authorDetail {
background: rgb(202, 202, 202);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
padding: 10px;
color: rgb(46, 46, 46);
}
#buttonContainer {
display: flex;
justify-content: center;
}