-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
94 lines (93 loc) · 1.81 KB
/
styles.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
body {
font-family: 'Georama', sans-serif;
background-image: url("starry-night-1149815_1280pixabay.jpg");
background-repeat: no-repeat;
background-size: cover;
color: black;
}
#inputWords {
margin: 50px;
text-align: center;
}
.mobileview {
display: inline-block;
background-color: #fffcfc;
padding: 8px;
width: 280px;
border-radius: 20px;
box-shadow: 30px 30px 50px rgb(26, 24, 24);
}
.title {
text-align: left;
padding-left: 25px;
}
h2 {
margin-top: 10px;
display: inline-block;
}
i {
display: inline-block;
}
p {
font-size: 0.9em;
}
.icons {
text-align: right;
padding: 8px;
}
.home {
text-align: left;
padding-left: 25px;
height: 40px;
}
h5 {
display: inline-block;
font-weight: normal;
}
.justinputs {
padding: 8px 8px;
width: 80%;
display: inline-block;
-webkit-box-shadow: 0px 0px 70px -45px rgba(66, 68, 90, 1);
-moz-box-shadow: 0px 0px 70px -45px rgba(66, 68, 90, 1);
box-shadow: 0px 0px 70px -45px rgba(66, 68, 90, 1);
}
input[type="text"] {
width: 50%;
height: 25px;
border-radius: 30px;
border: 1px solid #ccc3c7;
}
ul {
list-style-type: none;
padding: 0px;
margin: 0px;
}
li {
line-height: 1.7em;
text-transform: lowercase;
margin-top: 2px;
color: black;
font-size: 0.9em;
}
#buttonChange {
margin-top: 30px;
margin-bottom: 10px;
width: 100px;
height: 30px;
border-radius: 10px;
border: none;
font-weight: bold;
background: rgb(182,189,212);
background: linear-gradient(45deg, rgba(182,189,212,1) 0%, rgba(212,179,194,1) 100%);
}
#history {
height: auto;
margin-top: 10px;
margin-bottom: 10px;
padding: 10px;
background-color: #F3F0F2;
width: 80%;
display: inline-block;
border-radius: 10px;
}