-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
86 lines (74 loc) · 1.36 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
* {
padding: 0;
margin: 0;
vertical-align: baseline;
list-style: none;
border: 0
}
body {
background-color: rgba(49, 12, 94, 0.749);
font-family: Arial, Helvetica, sans-serif;
font-size: 20px;
color: white;
}
.container {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
margin: 30px;
}
.control {
display: flex;
flex-direction: column;
margin: 30px;
}
.control input, button {
margin: 15px;
padding: 15px;
font-size: 20px;
border-radius: 20px;
transition: 0.4s;
box-shadow: 0 0 40px -10px rgb(0, 0, 0);
}
.control button:hover {
background-color: rgb(92, 87, 87);
color: white;
transform: scale(1.25);
}
img {
display: block;
margin-bottom: 15px;
width: 300px;
border: 2px solid rgb(55, 53, 53);
text-align: center;
transition: 0.4s;
}
img:hover {
transform: scale(1.80);
}
#t {
font-size: 15px;
margin-top: 25px;
text-align: center;
background-color: beige;
color: black;
padding: 5px;
transition: 0.4s;
box-shadow: 0 0 40px -10px rgb(0, 0, 0);
}
#t:hover {
transform: scale(1.80);
}
a {
color: rgb(0, 0, 0);
}
a:hover {
color: rgba(46, 6, 6, 0.671);
}
p {
text-align: center;
background-color: rgb(45, 45, 45);
padding: 15px;
transition: 0.4s;
}