-
Notifications
You must be signed in to change notification settings - Fork 43
/
style.css
126 lines (117 loc) · 2.78 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
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
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
body {
background: rgb(0, 0, 0);
background: linear-gradient(
0deg,
rgb(212, 207, 175) 0%
rgba(228, 217, 255, 1) 0%
rgba(30,39,73,1) 100%
);
background-repeat: no-repeat;
height: 100%;
}
.profileimage {
border-radius: 50%;
}
.profileimagecontainer {
display: flex;
align-content: center;
justify-content: center;
margin-top: 3rem;
}
p{
text-align: center;
font-weight: 500;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.name {
display: flex;
align-content: center;
justify-content: center;
color: rgb(243, 236, 236);
font-family:Roboto;
font-size: 2rem;
}
.name svg{
padding-top: 1rem;
position: relative;
top: 0.5rem;
}
.container{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.name h3{
/* color: lightblue; */
color: lightgreen;
}
input[type="text"], a {
display: flex;
align-content: center;
justify-content: center;
border: 1px white solid;
border-radius: 2rem;
background-color: transparent;
color: white;
text-decoration: none;
font-size: 2rem;
margin: 30px;
padding: 30px;
width: 60vw;
align-items: center;
font-family: 'Roboto';
font-weight: 500;
transition: 0.5s all;
}
input[type="text"] {
outline-color: lightgreen;
}
a:hover {
transform: scale(1.04);
background-color: lightgreen;
border: none;
color: black;
transition: 0.5s all;
font-weight: bolder;
}
@media screen and (max-width: 600px) {
.name {
font-size: 20px;
}
.profileimage {
height: 180px;
width: 180px;
}
body {
height: 75%;
}
}
@media screen and (max-width: 426px) {
.name {
font-size: 15px;
}
a {
font-size: 1.7rem;
}
.profileimage {
height: 170px;
width: 170px;
}
}
@media screen and (max-width: 330px) and (min-width: 60px){
.name {
font-size: 8px;
}
a {
font-size: 1.2rem;
}
.profileimage {
height: 150px;
width: 150px;
}
body {
height: 50%;
}
}