-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
96 lines (86 loc) · 1.66 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
@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');
body {
font-family: 'Varela Round', sans-serif;
color: #a22de1;
background-color: #a22de1
}
center {
font-family: 'Varela Round', sans-serif;
color: #a22de1;
background-color: #a22de1
}
.container {
background-color: white;
border: 3px solid white;
border-radius: 20px;
width: 65%;
height: auto!important;
margin-top: 7%;
box-shadow: 11px 11px rgb(84, 84, 84, 45%);
}
.footer {
color: #858585;
align-items: center;
}
.creator a {
text-decoration: none;
color: #858585;
}
.random {
cursor: pointer;
border: black;
border-radius: 7px;
width: 125px!important;
height: 27px!important
}
.input {
border: black;
border-radius: 17px;
}
.social {
background-color: white;
border: 3px solid white;
border-radius: 20px;
width: 45%;
height: auto!important;
margin-top: 3%;
box-shadow: 11px 11px rgb(84, 84, 84, 45%);
}
.social-btn {
cursor: pointer;
color: white;
font-size: 25px;
background-color: #a22de1;
width: 55px;
height: 55px!important;
border: none;
border-radius: 7px;
box-shadow: 5px 5px black;
margin: 0 10px 0 0;
transition: 0.3s;
}
.social-btn:hover {
transform: translateY(4px) translateX(4px);
box-shadow: 1px 1px black;
transition: 0.3s;
}
@media only screen and (max-width: 600px) {
.container {
background-color: white;
border: 3px solid white;
border-radius: 20px;
width: 95%;
height: auto!important;
margin-top: 7%;
box-shadow: 11px 11px rgb(84, 84, 84, 45%);
}
.social {
background-color: white;
border: 3px solid white;
border-radius: 20px;
width: 65%;
height: auto!important;
margin-top: 3%;
box-shadow: 11px 11px rgb(84, 84, 84, 45%);
}
}