-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
140 lines (112 loc) · 2.17 KB
/
index.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
html, body {
margin: 0;
padding: 0;
background: teal;
user-select: none;
}
img {
width: 100%;
display: flex;
height: 100%;
}
#h1 {
text-align: center;
color: teal;
background: whitesmoke;
padding: 6px 5px;
margin-left: 5%;
margin-right: 5%;
border-radius: 25px;
}
#input {
display: block;
margin-left: auto;
margin-right: auto;
height: 100px;
border-radius: 45px;
border: none;
text-align: center;
color: teal;
word-break: break-all;
white-space: pre-wrap;
inline-size: min-content;
overflow-wrap: break-word;
width: 90%;
}
#button {
display: block;
margin-left: auto;
margin-right: auto;
color: white;
background: orange;
border-radius: 10px;
padding: 10px;
box-shadow: 5px;
margin-top: 5px;
font-style: bold;
border: 2px solid white;
font-size: 18px;
}
#button:hover {
display: block;
margin-left: auto;
margin-right: auto;
color: orange;
font-weight: 950;
background: white;
border-radius: 10px;
padding: 10px;
box-shadow: 5px;
margin-top: 5px;
font-style: bold;
border: 2px dashed orange;
font-size: 18px;
}
#h2 {
text-align: center;
background: orange;
color: teal;
border: white solid 2px;
border-radius: 55px;
padding: 2px 5px;
margin-left: 70px;
margin-right: 70px;
}
#ul {
/* display: flex;
flex-wrap: wrap;
flex: 1; */
text-align: center;
background: orange;
color: teal;
border: white solid 2px;
border-radius: 55px;
padding: 2px 5px;
margin-left: 70px;
margin-right: 70px;
padding-bottom: 30px;
font-size: 30px;
font-weight: 600;
}
li {
background: teal;
color: orange;
border: white solid 2px;
width: 100%;
border-radius: 39px;
border-width: 2px;
align-content: center;
margin-top: 5px;
margin-right: 2px;
}
li:hover {
background: darkorange;
color: teal;
border:teal solid 35px;
width: 100%;
border-radius: 39px;
border-width: 2px;
align-content: center;
margin-top: 5px;
margin-right: 2px;
}