-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
93 lines (81 loc) · 1.51 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
*{
margin: 0;
padding: 0;
}
body{
background: linear-gradient(90deg, rgb(37, 35, 35), rgb(68, 68, 54), rgb(54, 27, 27));
}
.div{
text-align: center;
}
h1{
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
margin-top: 100px;
margin-bottom: 20px;
font-size: 3em;
color: rgba(155, 39, 39, 0.8);
text-shadow: 0px 5px 5px rgba(78, 39, 12);
}
section{
width: 50%;
height: 100%;
background: linear-gradient(90deg, rgb(48, 45, 51), rgb(38, 35, 51), rgb(15, 15, 22));
}
.container{
width: 100%;
}
#input{
width: 30%;
height: 35px;
border-style: solid;
margin-top: 0px;
background-color: rgb(205, 204, 250);
}
#button{
width:27px;
height: 27px;
padding: 0px;
border-radius: 50%;
margin-top:5px;
margin-left: 5px;
margin-bottom: 0px;
}
p{
font-weight: bold;
font-size: 1.6rem;
font-family: sans-serif;
font-style: italic;
margin-top: 5px;
color: rgba(179, 48, 48);
}
b{
font-size: 0.9rem;
color: whitesmoke;
opacity: 0.5;
}
#button:hover{
background-color: rgba(179, 48, 48);
}
p:hover{
font-size: 2rem;
}
@media (max-width: 500px){
section{
width: 95%;
}
}
@media (max-width: 500px){
input{
width: 100%;
}
}
@media (min-width: 505px){
section{
width: 80%;
}
}
@media (min: 505px){
input{
width: 100%;
}
}