There are at least three ways to answer this problem.
If you just want a numerical answer, the easiest is probably is just to keep squaring the matrix to approximate $P^{\infty}$. Because a transition matrix can be written as
$$V \begin{bmatrix} 1 & 0 & 0 \\ 0 & a & 0 \\ 0 & 0 & b \end{bmatrix} V^{-1}$$
with $a < 1$ and $b < 1$, you'll double the accuracy of the decimal places with each step.
$$\underbrace{P^{2^{2^{...}}}}_{\text{6 times}} = \begin{bmatrix}0.54166690206815 & 0.16666666664634 & 0.29166643128552\\ 0.54166658815207 & 0.16666666676831 & 0.29166674507961\\ 0.54166627435797 & 0.16666666664634 & 0.29166705899569\end{bmatrix}$$
Another way to solve it is to actually compute the eigenvalue decomposition. (I'll use the symbol $\infty$ loosely for simplicity sake.)
$$P^{\infty} =
\left(\begin{bmatrix}1 & 1 & 1\\ 1 & -\frac{1}{3} & -5\\ 1 & -\frac{5}{3} & 1\end{bmatrix}
\begin{bmatrix} 1 & 0 & 0 \\ 0 & 0.8 & 0 \\ 0 & 0 & 0.7 \end{bmatrix}
\begin{bmatrix}1 & 1 & 1\\ 1 & -\frac{1}{3} & -5\\ 1 & -\frac{5}{3} & 1\end{bmatrix}^{-1}\right)^{\infty}
$$
$$P^{\infty} =
\begin{bmatrix}1 & 1 & 1\\ 1 & -\frac{1}{3} & -5\\ 1 & -\frac{5}{3} & 1\end{bmatrix}
\begin{bmatrix} 1^{\infty} & 0 & 0 \\ 0 & 0.8^{\infty} & 0 \\ 0 & 0 & 0.7^{\infty} \end{bmatrix}
\begin{bmatrix}1 & 1 & 1\\ 1 & -\frac{1}{3} & -5\\ 1 & -\frac{5}{3} & 1\end{bmatrix}^{-1}
$$
$$P^{\infty} =
\begin{bmatrix}1 & 1 & 1\\ 1 & -\frac{1}{3} & -5\\ 1 & -\frac{5}{3} & 1\end{bmatrix}
\begin{bmatrix} 1 & 0 & 0 \\ 0 & 0 & 0 \\ 0 & 0 & 0 \end{bmatrix}
\begin{bmatrix}1 & 1 & 1\\ 1 & -\frac{1}{3} & -5\\ 1 & -\frac{5}{3} & 1\end{bmatrix}^{-1}
$$
$$P^{\infty} = \begin{pmatrix}\frac{13}{24} & \frac{1}{6} & \frac{7}{24}\\ \frac{13}{24} & \frac{1}{6} & \frac{7}{24}\\ \frac{13}{24} & \frac{1}{6} & \frac{7}{24}\end{pmatrix}$$
Another way to find the steady state is as Gareth suggested.
You are looking for $\pi P = \pi$. If you matrix has no sink states (a row will all zeroes and a single one), then this amounts to computing the left null space of $P - I$, then dividing through by a constant to maintain the stochastic property.
$$left-null-space(P - I) = \begin{bmatrix} 260 & 80 & 140\end{bmatrix}$$
$$steady-state = \frac {\begin{bmatrix} 260 & 80 & 140\end{bmatrix}} {260 + 80 + 140} = \begin{bmatrix}\frac{13}{24} & \frac{1}{6} & \frac{7}{24}\end{bmatrix}$$
If you do have sink states, then this amounts to computing a matrix inverse of a sub matrix without the sink rows and columns then doing a matrix multiplication which you can probably figure out if you need to.